Firefox Tomorrow

web api instance method

FileSystemFileHandle: getFile() method

View on MDN ↗

Secure contextAvailable in 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.

Syntax

getFile()

Parameters

None.

Return value

A Promise which resolves to a File object.

Exceptions

  • NotAllowedError DOMException
    • : Thrown if the state is not granted in read mode.
  • NotFoundError DOMException
    • : Thrown if current entry is not found.

Examples

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();
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also