function opendir
Jump to headingopendir(): void
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.
Parameters Jump to heading
Jump to headingpath: PathLike
Jump to headingcb: (err: ErrnoException | null,dir: Dir,) => void
Return Type Jump to heading
void
Jump to headingopendir(): void
Parameters Jump to heading
Jump to headingpath: PathLike
Jump to headingoptions: OpenDirOptions
Jump to headingcb: (err: ErrnoException | null,dir: Dir,) => void
Return Type Jump to heading
void