dir.read()


通过 readdir(3) 异步地读取下一个目录条目作为 fs.Dirent

此函数返回的目录条目没有操作系统底层目录机制提供的特定顺序。

Asynchronously read the next directory entry via readdir(3) as an fs.Dirent.

After the read is completed, a Promise is returned that will be resolved with an fs.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. Entries added or removed while iterating over the directory may or may not be included in the iteration results.