Protected
Optional
_entriesProtected
closedProtected
Readonly
contextReadonly
pathProtected
_readAsynchronously iterates over the directory via readdir(3)
until all entries have been read.
Protected
checkAsynchronously close the directory's underlying resource handle. Subsequent reads will result in errors.
Asynchronously close the directory's underlying resource handle. Subsequent reads will result in errors.
Synchronously close the directory's underlying resource handle. Subsequent reads will result in errors.
Asynchronously read the next directory entry via readdir(3)
as an Dirent
.
After the read is completed, a value is returned that will be resolved with an Dirent
, or null
if there are no more directory entries to read.
Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms.
Asynchronously read the next directory entry via readdir(3)
as an Dirent
.
After the read is completed, a value is returned that will be resolved with an Dirent
, or null
if there are no more directory entries to read.
Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms.
Synchronously read the next directory entry via readdir(3)
as a Dirent
.
If there are no more directory entries to read, null will be returned.
Directory entries returned by this function are in no particular order as provided by the operating system's underlying directory mechanisms.
A class representing a directory stream.