← Back to index
function walk

Walks the file tree rooted at root, yielding each file or directory in the tree filtered according to the given options.

Examples

🔗

Example 1

import { walk } from "https://deno.land/std@$STD_VERSION/fs/walk.ts";
import { assert } from "https://deno.land/std@$STD_VERSION/assert/assert.ts";

for await (const entry of walk(".")) {
  console.log(entry.path);
  assert(entry.isFile);
}

Parameters

🔗
root: string | URL
🔗
unnamed 1: WalkOptions

Return Type

🔗
AsyncIterableIterator<WalkEntry>