Skip to main content
Module

x/blog/deps.ts>walk

Minimal boilerplate blogging.
Go to Latest
function walk
import { walk } from "https://deno.land/x/blog@0.5.0/deps.ts";

Walks the file tree rooted at root, yielding each file or directory in the tree filtered according to the given options. The files are walked in lexical order, which makes the output deterministic but means that for very large directories walk() can be inefficient.

Options:

  • maxDepth?: number = Infinity;
  • includeFiles?: boolean = true;
  • includeDirs?: boolean = true;
  • followSymlinks?: boolean = false;
  • exts?: string[];
  • match?: RegExp[];
  • skip?: RegExp[];
      import { walk } from "./walk.ts";
      import { assert } from "../testing/asserts.ts";

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

Parameters

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

Returns

AsyncIterableIterator<WalkEntry>