Window.showSaveFilePicker()
Draft: This page is not complete.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The showSaveFilePicker()
method of the Window
interface shows a file picker that allows a user to save a file. Either by selecting an existing file, or entering a name for a new file.
Syntax
var FileSystemFileHandle = Window.showSaveFilePicker();
Parameters
- options Optional
-
An optional object containing options, which are as follows:
-
excludeAcceptAllOption
:ABoolean
. Defaultfalse
. By default the picker should include an option to not apply any file type filters (instigated with the type option below). Setting this option totrue
means that option is not available. -
types
: AnArray
of allowed file types to save. Each item is an object with the following options:
-
Return value
Exceptions
AbortError
-
Thrown if the user dismisses the file picker without selecting or inputting a file, or if the user agent deems any selected files too sensitive or dangerous.
Examples
The following function shows a file picker, with text files highlighted for selection.
function getNewFileHandle() { const opts = { types: [{ description: 'Text file', accept: {'text/plain': ['.txt']}, }], }; return window.showSaveFilePicker(opts); }
Specifications
Specification |
---|
File System Access # api-showsavefilepicker |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
showSaveFilePicker |
86 |
86 |
No |
No |
72 |
No |
No |
No |
No |
No |
No |
No |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Window/showSaveFilePicker