Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ter/deps/std.ts>fs.WalkOptions

A tiny wiki-style site generator with Zettelkasten flavor.
Go to Latest
interface fs.WalkOptions
import { type fs } from "https://deno.land/x/ter@0.15.51/deps/std.ts";
const { WalkOptions } = fs;

Properties

optional
maxDepth: number = Infinity

The maximum depth of the file tree to be walked recursively.

optional
includeFiles: boolean = true

Indicates whether file entries should be included or not.

optional
includeDirs: boolean = true

Indicates whether directory entries should be included or not.

optional
exts: string[] = undefined

List of file extensions used to filter entries. If specified, entries without the file extension specified by this option are excluded.

optional
match: RegExp[] = undefined

List of regular expression patterns used to filter entries. If specified, entries that do not match the patterns specified by this option are excluded.

optional
skip: RegExp[] = undefined

List of regular expression patterns used to filter entries. If specified, entries matching the patterns specified by this option are excluded.