Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The FileSystemDirectoryReader
interface of the File and Directory Entries API lets you access the FileEntry
-based objects (generally FileSystemFileEntry
or FileSystemDirectoryEntry
) representing each entry in a directory.
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 Browser compatibility section for details.
Methods
readEntries()
- Returns a an array containing some number of the directory's entries. Each item in the array is an object based on
FileSystemEntry
—typically eitherFileSystemFileEntry
orFileSystemDirectoryEntry
.
Specifications
Specification | Status | Comment |
---|---|---|
File and Directory Entries API | Editor's Draft | Draft of proposed API |
This API has no official W3C or WHATWG specification.
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Microsoft Edge | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 13 webkit | 50 (50) | No support | (Yes)[1] | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | (Yes) webkit | 50.0 (50) | No support | No support | No support |
[1] Implemented in Microsoft Edge as WebKitDirectoryReader
.