Skip to content

Instantly share code, notes, and snippets.

@hmbrg
Created April 9, 2016 17:53
Show Gist options
  • Select an option

  • Save hmbrg/bb68b0d86d716b6032f82cfcdfea11dd to your computer and use it in GitHub Desktop.

Select an option

Save hmbrg/bb68b0d86d716b6032f82cfcdfea11dd to your computer and use it in GitHub Desktop.
Electron: saving dialog
const dialog = electron.dialog;
dialog.showSaveDialog(null,
{
title: 'Select download file...',
defaultPath: 'defaultFileName'
filters: [
{ name: 'Images', extensions: ['jpg'] }
]
},
(filename) => {
console.log(`Saving path: ${filename}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment