Skip to main content
Module

x/enzastdlib/vendor/@deno-std-fs.ts>ExistsOptions

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
interface ExistsOptions
import { type ExistsOptions } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-std-fs.ts";

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.