| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/getFile | [Back] [Original] |
Get to know MDN better
This feature is well established and works across many devices and browser versions. Its been available across browsers since March 2023.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Web Workers.
The getFile() method of the
FileSystemFileHandle interface returns a Promise which resolves to a
File object representing the state on disk of the entry represented by the handle.
If the file on disk changes or is removed after this method is called, the returned
File object will likely be no longer readable.
getFile()
None.
A Promise which resolves to a File object.
NotAllowedError DOMExceptionThrown if the PermissionStatus.state is not granted in read mode.
NotFoundError DOMExceptionThrown if current entry is not found.
The following asynchronous function presents a file picker and once a file is chosen,
uses the getFile() method to retrieve the contents.
async function getTheFile() {
// open file picker
const [fileHandle] = await window.showOpenFilePicker(pickerOpts);
// get file contents
const fileData = await fileHandle.getFile();
}
| Specification |
|---|
| File System # api-filesystemfilehandle-getfile |
This page was last modified on Oct 6, 2024 by MDN contributors.
FileSystemFileHandleYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |