electron show save dialog save to certian file type code example
Example: electron save as dialog
// Electron Save As Dialog
// Syntax: dialog.showSaveDialog([browserWindow, ]options)
const {remote} = require('electron');
var dialog = remote.dialog;
var browserWindow = remote.getCurrentWindow();
var options = {
title: "Save new file as...",
defaultPath : "/path/to/new_file.jsx",
filters: [
{name: 'Custom File Type', extensions: ['jsx']}
]
}
let saveDialog = dialog.showSaveDialog(browserWindow, options);
saveDialog.then(function(saveTo) {
console.log(saveTo.filePath);
//>> /path/to/new_file.jsx
})