Firefox Tomorrow

web api instance property

FileSystemEntry: filesystem property

View on MDN ↗

The read-only filesystem property of the FileSystemEntry interface contains a FileSystem object that represents the file system on which the entry resides.

Value

A FileSystem representing the file system on which the file or directory described by the FileSystemEntry is located.

Examples

This example obtains a FileSystemDirectoryEntry for the root directory of the file system containing a file.

let rootDirEntry = fileEntry.filesystem.root;

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also