Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.readDirSync

Synchronously reads the directory given by path and returns an iterable of Deno.DirEntry.

for (const dirEntry of Deno.readDirSync("/")) {
  console.log(dirEntry.name);
}

Throws error if path is not a directory.

Requires allow-read permission.

function readDirSync(path: string | URL): Iterable<DirEntry>;
§
readDirSync(path: string | URL): Iterable<DirEntry>
[src]

§Parameters

§
path: string | URL
[src]

§Return Type

§
Iterable<DirEntry>
[src]