Skip to main content
Module

x/enzastdlib/vendor/@deno-std-fs.ts>walk

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
function walk
Re-export
import { walk } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-std-fs.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

import { walk } from "https://deno.land/std@0.224.0/fs/walk.ts";
import { assert } from "https://deno.land/std@0.224.0/testing/asserts.ts";

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

Parameters

root: string | URL
optional
unnamed 1: WalkOptions = [UNSUPPORTED]

Returns

AsyncIterableIterator<WalkEntry>