import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { readDir } = Deno;
Reads the directory given by path
and returns an async iterable of
Deno.DirEntry
. The order of entries is not guaranteed.
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