Module

x/fresh/tests/deps.ts>fs.walk

The next-gen web framework.
Extremely Popular
Go to Latest
function fs.walk
import { fs } from "https://dotland.deno.dev/x/fresh@1.5.2/tests/deps.ts";
const { walk } = fs;

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
optional
unnamed 1: WalkOptions = [UNSUPPORTED]

Returns

AsyncIterableIterator<WalkEntry>
import fs.walk
import { fs } from "https://dotland.deno.dev/x/fresh@1.5.2/tests/deps.ts";
const { walk } = fs;