--- title: File and Directory Entries API slug: Web/API/File_and_Directory_Entries_API tags: - API - File System API - File and Directory Entries API - Files - NeedsTranslation - Non-standard - Overview - Reference - TopicStub translation_of: Web/API/File_and_Directory_Entries_API ---

{{DefaultAPISidebar("File System API")}}{{Non-standard_header}}

The File and Directory Entries API simulates a local file system that web apps can navigate within and access files in. You can develop apps which read, write, and create files and/or directories in a virtual, sandboxed file system.

Because this is a non-standard API, whose specification is not currently on a standards track, it's important to keep in mind that not all browsers implement it, and those that do may implement only small portions of it. Check the {{anch("Browser compatibility")}} section for details.

Two very similar APIs exist depending on whether you desire asynchronous or synchronous behavior. The synchronous API is indended to be used inside a {{domxref("Worker")}} and will return the values you desire. The asynchronous API will not block and functions and the API will not return values; instead, you will need to supply a callback function to handle the response whenever it arrives.

The Firefox implementation of the File and Directory Entries API is very limited; there is no support for creating files. Only for accessing files which are selected by the user in a file {{HTMLElement("input")}} element (see {{domxref("HTMLInputElement")}} as well) or when a file or directory is provided to the Web site or app using drag and drop. Firefox also does not implement the synchronous API. Check the browser compatibility for any part of the API you use carefully, and see File and Directory Entries API support in Firefox for more details.

Getting access to a file system

There are two ways to get access to file systems defined in the current specification draft:

Asynchronous API

The asynchronous API should be used for most operations, to prevent file system accesses from blocking the entire browser if used on the main thread. It includes the following interfaces:

{{domxref("FileSystem")}}
Represents a file system.
{{domxref("FileSystemEntry")}}
The basic interface representing a single entry in a file system. This is implemented by other interfaces which represent files or directories.
{{domxref("FileSystemFileEntry")}}
Represents a single file in a file system.
{{domxref("FileSystemDirectoryEntry")}}
Represents a single directory in a file system.
{{domxref("FileSystemDirectoryReader")}}
Created by calling {{domxref("FileSystemDirectoryEntry.createReader()")}}, this interface provides the functionality which lets you read the contents of a directory.
{{domxref("FileSystemFlags")}}
Defines a set of values which are used when specifying option flags when calling certain methods in the File and Directory Entries API.
{{DOMxRef("FileError")}} {{Obsolete_Inline}}
Represents an error which is generated by asynchronous file system calls.

There are also two global functions (which are not part of the specification at this time and are implemented only by Google Chrome). They're available on the {{domxref("Window")}} object and implemented in {{domxref("LocalFileSystem")}}: requestFileSystem() and resolveLocalFileSystemURL().

Synchronous API

The synchronous API is should only be used in {{domxref("Worker")}}s; these calls block until they're finished executing, and simply return the results instead of using callbacks. Using them on the main thread will block the browser, which is naughty. The interfaces below otherwise mirror the ones from the asynchronous API.

{{domxref("FileSystemSync")}}
Represents a file system.
{{domxref("FileSystemEntrySync")}}
The basic interface representing a single entry in a file system. This is implemented by other interfaces which represent files or directories.
{{domxref("FileSystemFileEntrySync")}}
Represents a single file in a file system.
{{domxref("FileSystemDirectoryEntrySync")}}
Represents a single directory in a file system.
{{domxref("FileSystemDirectoryReaderSync")}}
Created by calling {{domxref("FileSystemDirectoryEntrySync.createReader()")}}, this interface provides the functionality which lets you read the contents of a directory.
{{DOMxRef("FileException")}} {{Obsolete_Inline}}
Represents an error which is generated by synchronous file system calls.

There are also two global functions (which are not part of the specification at this time and are implemented only by Google Chrome). They're available on the {{domxref("Worker")}} object and implemented in {{domxref("LocalFileSystemSync")}}: requestFileSystemSync() and resolveLocalFileSystemSyncURL().

Other Interfaces

{{domxref("LocalFileSystem")}}
Gives you access to a sandboxed file system.
{{domxref("LocalFileSystemSync")}}
 
{{domxref("LockedFile")}}
Provides tools to deal with a given file with all the necessary locks.
{{domxref("Metadata")}}{{experimental_inline}}

Specifications

Specification Status Comment
{{SpecName('File System API')}} {{Spec2('File System API')}} Draft of proposed API

This API has no official W3C or WHATWG specification.

Browser compatibility

FileSystem

{{Compat("api.FileSystem", 0)}}

FileSystemSync property

{{Compat("api.FileSystemSync", 0)}}

See also