Electron 打开保存文件对话框

1、引入相关模块

imports = {};
imports.fs = require('fs');  // nodejs文件系统模块
imports.remote = require('electron').remote;
window.imports = imports;

2、主要代码

  onSaveButtonClick(): void {
    const dialog = this.imports.remote.dialog;
    const window = this.imports.remote.getCurrentWindow();

    let options = {
      title: "保存文件",
      defaultPath : "C:\\自定义文件名.txt",
      filters :[
        { name: 'Images', extensions: ['jpg', 'png', 'gif'] },
        { name: 'Movies', extensions: ['mkv', 'avi', 'mp4'] },
        { name: 'Custom File Type', extensions: ['as'] },
        { name: 'All Files', extensions: ['*'] }
      ]
    };

    dialog.showSaveDialog(window, options).then(result => {
      var stream = this.imports.fs.createWriteStream(result.filePath);
      if (this.windRainButtonType)
        this.createWindAndRainFile(stream);
      
      if (this.snowButtonType)
        this.createSnowFile(stream);
        
    }).catch(error => {
      console.log(error);
    });
  }

3、showSaveDialog方法参数二options属性
title: 对话框窗口的标题。
defaultPath :对话框的默认展示路径。
filters :对话框过滤文件。

详细介绍请参考:https://www.electronjs.org/docs/api/dialog

4、打开的对话框
在这里插入图片描述

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值