Skip to main content
Deno.readDir - Deno documentation
function Deno.readDir
allow-read
readDir(path: string | URL): AsyncIterable<DirEntry>
Reads the directory given by `path` and returns an async iterable of [`Deno.DirEntry`](../././~/Deno.DirEntry). The order of entries is not guaranteed. ```ts for await (const dirEntry of Deno.readDir("/")) { console.log(dirEntry.name); } ``` Throws error if `path` is not a directory. Requires `allow-read` permission.

Parameters

path: string | URL

Return Type

AsyncIterable<DirEntry>