电子保存对话框指定文件类型

时间:2017-03-31 08:59:46

标签: javascript electron atom-editor savefiledialog

我在电子应用中有一个保存对话框。目前,当用户点击“保存”时,它将使用默认名称和文件扩展名foo.pdf保存。

更改名称时,不会添加文件扩展名。

有没有办法确保将.pdf文件扩展名添加到所有文件名?

document.getElementById("pdf-btn").onclick = function() {
  var webv = document.getElementById('appview');
  dialog.showSaveDialog({
    defaultPath: '~/foo.pdf'
  }, function(file_path) {
    if (file_path) {
      webv.printToPDF({}, function(err, data) {
        if (err) {
          dialog.showErrorBox('Error', err);
          return;
        }
        fs.writeFile(file_path, data, function(err) {
          if (err) {
            dialog.showErrorBox('Error', err);
            return;
          }

          // addext = file_path + ".pdf";
          //
          // save_pdf_path = addext;

          save_pdf_path = file_path;

          var message = "<p> Write PDF file: " + save_pdf_path + " successfully!</p>";

          console.log(message);

        });
      });
    }
  });
}

1 个答案:

答案 0 :(得分:7)

通过添加以下代码,我可以指定文件扩展名。

dialog.showSaveDialog({
    filters: [{
      name: 'Adobe PDF',
      extensions: ['pdf']
    }]
  },