备份
我们用的是json文件数据库,备份数据非常简单,直接复制文件即可。我们用fs-extra这个库操作,非常简单。
https://github.com/jprichardson/node-fs-extra
// With Promises:
fs.emptyDir('/tmp/some/dir')
.then(() => {
console.log('success!')
})
.catch(err => {
console.error(err)
})
// Async with promises:
fs.copy('/tmp/myfile', '/tmp/mynewfile')
.then(() => console.log('success!'))
.catch(err => console.error(err))
核心代码:
backup() {
this.backuping = true
const backupFileName = moment(new Date()).format('YYYYMMDDHHMMSS') + 'Backup.json'
// 如果没有目录则创建
fs.ensureDir(this.backupPath).then(() => {
// 复制文件
fs.copy(this.userDataPath + '/' + this.dbFileName, this.backupPath + '/' + backupFileName)
.then(() => {
this.backuping = false
this.snackbar = true
this.submitResult = true
this.snackbarMsg = 'Backup succeeded'
})
.catch(err => {
this.backuping = false
this.snackbar = true
this.submitResult = false
this.snackbarMsg = 'Backup failed'
})
}).catch(err => {
this.backuping = false
this.snackbar = true
this.submitResult = false
this.snackbarMsg = 'Failed to create folder'
})
},
恢复
原理同备份一样,都是直接操作文件即可。恢复相当于删除和移动文件,函数使用remove和move,copy等方法。当然还有弹出文件选择框等操作。恢复完一定记得重启程序,使用relaunch、和 exist方法。
核心代码:
recovery() {
this.recovering = true
// 弹出文件选择框
remote.dialog.showOpenDialog({
// title: '请选择需要导入的文件',
defaultPath: this.backu