FileSystemDirectoryReader.readEntries()
The FileSystemDirectoryReader
interface's readEntries()
method retrieves the directory entries within the directory being read and delivers them in an array to a provided callback function.
The objects in the array are all based upon FileSystemEntry
. Generally, they are either FileSystemFileEntry
objects, which represent standard files, or FileSystemDirectoryEntry
objects, which represent directories.
Syntax
readEntries(successCallback); readEntries(successCallback, errorCallback);
Parameters
successCallback
-
A function which is called when the directory's contents have been retrieved. The function receives a single input parameter: an array of file system entry objects, each based on
FileSystemEntry
. Generally, they are eitherFileSystemFileEntry
objects, which represent standard files, orFileSystemDirectoryEntry
objects, which represent directories. If there are no files left, or you've already calledreadEntries()
on thisFileSystemDirectoryReader
, the array is empty. -
errorCallback
Optional -
A callback function which is called if an error occurs while reading from the directory. It receives one input parameter: a
DOMException
object describing the error which occurred.
Return value
undefined
Example
See DataTransferItem.webkitGetAsEntry()
for example code that uses this method.
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
readEntries |
8 |
No |
50 |
No |
? |
11.1 |
≤37 |
18 |
50 |
No |
11.3 |
1.0 |
On Chrome 77, readEntries()
will only return the first 100 FileSystemEntry
instances. In order to obtain all of the instances, readEntries()
must be called multiple times.
See also
- File and Directory Entries API
- Introduction to the File System API
FileSystemDirectoryEntry
FileSystem
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryReader/readEntries