Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/std/fs/mod.ts>walk

A modern runtime for JavaScript and TypeScript.
Go to Latest
function walk
Re-export
import { walk } from "https://deno.land/x/deno@v0.22.0/std/fs/mod.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[];

  • onError?: (err: Error) => void;

    for await (const { filename, info } of walk(".")) { console.log(filename); assert(info.isFile()); };

Parameters

root: string
optional
options: WalkOptions = [UNSUPPORTED]

Returns

AsyncIterableIterator<WalkInfo>