import { walk } from "https://deno.land/x/bid@v1.0.3/deps.ts";
Walks the file tree rooted at root, yielding each file or directory in the tree filtered according to the given options.
Examples
Example 1
Example 1
import { walk } from "https://deno.land/std@0.224.0/fs/walk.ts";
import { assert } from "https://deno.land/std@0.224.0/assert/assert.ts";
for await (const entry of walk(".")) {
console.log(entry.path);
assert(entry.isFile);
}
Parameters
root: string | URL