Skip to main content

@std/fs@0.215.0

latest
Works with
It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun
It is unknown whether this package works with Browsers
It is unknown whether this package works with Deno
It is unknown whether this package works with Node.js
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Bun
JSR Score70%
Published2 years ago (0.215.0)
interface WalkOptions

Options for walk and walkSync.

Properties

optional
maxDepth: number = Infinity

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

Indicates whether file entries should be included or not.

Indicates whether directory entries should be included or not.

Indicates whether the followed symlink's path should be canonicalized. This option works only if followSymlinks is not false.

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.

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/fs

Import symbol

import { type WalkOptions } from "@std/fs";
or

Import directly with a jsr specifier

import { type WalkOptions } from "jsr:@std/fs";