opendir
Asynchronously open a directory. See the POSIX opendir(3)
documentation for more details.
Creates an fs.Dir
, which contains all further functions for reading from and cleaning up the directory.
The encoding
option sets the encoding for the path
while opening the directory and subsequent read operations.
Since
v12.12.0
external fun opendir(path: PathLike, options: OpenDirOptions, cb: (err: ErrnoException?, dir: Dir) -> Unit)(source)
suspend fun opendir(path: PathLike, options: OpenDirOptions = undefined.unsafeCast<Nothing>()): Dir(source)