Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -7337,8 +7337,9 @@ Asynchronously read the next directory entry via readdir(3) as an
A promise is returned that will be fulfilled 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.
For directory reads handled by the native file system, 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 might not be
included in the iteration results.

Expand Down
Loading