Electron对磁盘文件的处理

首先、选中文件

使用:electron的remote模块的dialog

Electron对磁盘文件的处理_第1张图片

  const onImport = () => {
      const { dialog } = remote
      let that = this
      dialog.showOpenDialog({title: '你好,文件导入', filters: [{name: 'wallet', extensions: ['wallet']}]}, function (filePaths) {
        if (filePaths) {
          if (filePaths.length > 0) {
            that.setState({
            recoverAccountFrm: Object.assign(that.state.recoverAccountFrm, {accountPrivatekeyFilePath: filePaths[0]})
          })
          } else {
            message.warning('选择文件为空!');
          }
        } else {
          message.warning('选择文件为空!');
        }
      })
    }

选中的是文件的路径,

filePaths[0] ===》 C:\Users\blockchain\Documents\err.wallet

第二步、处理文件:node.js 的fs

先从渲染进程中把文件的路径传入主进程中由主进程去处理,如何传入点这里

原因是,渲染进程是运行在浏览器环境,主进程是node环境)

openWallet(walletName) {
        const walletPath = this.getWalletPath(walletName);
        this.db = new Database(walletPath);
        const init = fs.readFileSync(path.join(__dirname,'migrate','init.sql'), 'utf8');
        this.db.exec(init);
    }

然后在主进程中就可以随意的使用fs模块去处理文件了

你可能感兴趣的:(随笔&笔记,electron)