Skip to main content
Module

x/dax/src/deps.ts>fs.ExistsOptions

Cross-platform shell tools for Deno and Node.js inspired by zx.
Very Popular
Latest
interface fs.ExistsOptions
import { type fs } from "https://deno.land/x/dax@0.39.2/src/deps.ts";
const { ExistsOptions } = fs;

Options for exists and existsSync.

Properties

optional
isReadable: boolean = false

When true, will check if the path is readable by the user as well.

optional
isDirectory: boolean = false

When true, will check if the path is a directory as well. Directory symlinks are included.

optional
isFile: boolean = false

When true, will check if the path is a file as well. File symlinks are included.