The File and Directory Entries API provides a way to process directories and file lists provided by the user via a form input or a drag-and-drop operation. It is a more advanced version of the File API, which allows you to work with a single file. It was originally intended to support a full virtual file system, but now only supports read operations on user-provided data.
See Relationship to other file-related APIs for a comparison between this API, the File System API, and the File API.
There are two ways to get access to file systems defined in the current specification draft:
drop event for drag and drop, you can call DataTransferItem.webkitGetAsEntry() to get the FileSystemEntry for a dropped item. If the result isn't null, then it's a dropped file or directory, and you can use file system calls to work with it.HTMLInputElement.webkitEntries property lets you access the FileSystemFileEntry objects for the currently selected files, but only if they are dragged-and-dropped onto the file chooser (Firefox bug 1326031). If HTMLInputElement.webkitdirectory is true, the <input> element is instead a directory picker, and you get FileSystemDirectoryEntry objects for each selected directory.The original File System API was created to let browsers implement support for accessing a sandboxed virtual file system on the user's storage device. Work to standardize the specification was abandoned back in 2012, but by that point, Google Chrome included its own implementation of the API. Over time, a number of popular sites and Web applications came to use it, often without providing any means of falling back to standard APIs or even checking to be sure the API is available before using it. Mozilla instead opted to implement other APIs which can be used to solve many of the same problems, such as IndexedDB; see the blog post Why no FileSystem API in Firefox? for more insights.
As a result, a number of popular websites did not work properly on browsers other than Chrome. To resolve that, the features of Google's API for which consensus could be reached were standardized as the File and Directory Entries API, and this was then implemented in other browsers.
The File and Directory Entries API includes the following interfaces:
FileSystemRepresents a file system.
FileSystemEntryThe basic interface representing a single entry in a file system. This is implemented by other interfaces which represent files or directories.
FileSystemFileEntryRepresents a single file in a file system.
FileSystemDirectoryEntryRepresents a single directory in a file system.
FileSystemDirectoryReaderCreated by calling FileSystemDirectoryEntry.createReader(), this interface provides the functionality which lets you read the contents of a directory.
DataTransferItem.webkitGetAsEntry()Returns an object based on FileSystemEntry representing the selected file's entry in its file system. This will generally be either a FileSystemFileEntry or FileSystemDirectoryEntry object.
File.webkitRelativePathReturns the path the URL of the File is relative to.
HTMLInputElement.webkitdirectoryA boolean that represents the webkitdirectory attribute. If true, the file-system-picker interface only accepts directories instead of files.
HTMLInputElement.webkitEntriesDescribes the currently selected files or directories.
| Specification |
|---|
| File and Directory Entries API> # api-domfilesystem> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
File_and_Directory_Entries_API |
7 | ≤18Before Edge 79, this API was only supported in drag-and-drop scenarios using theDataTransferItem.webkitGetAsEntry() method. It was not available for use in file or folder picker panels (such as when you use an <input> element with the HTMLInputElement.webkitdirectory attribute. |
50 | 15 | 11.1 | 18 | 50 | 14 | 11.3 | 1.0 | 4.4 | 11.3 |
name |
7 | ≤18 | 50 | 15 | 11.1 | 18 | 50 | 14 | 11.3 | 1.0 | 4.4 | 11.3 |
root |
7 | ≤18 | 50 | 15 | 11.1 | 18 | 50 | 14 | 11.3 | 1.0 | 4.4 | 11.3 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/File_and_Directory_Entries_API