Dir.prototype.readSync - Node documentation
method Dir.prototype.readSync

Usage in Deno

import { Dir } from "node:fs";
Dir.prototype.readSync(): Dirent | null

Synchronously read the next directory entry as an fs.Dirent. See the POSIX readdir(3) documentation for more detail.

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. Entries added or removed while iterating over the directory might not be included in the iteration results.

Return Type

Dirent | null