Skip to main content
Module

x/lume/deps/fs.ts>ExistsOptions

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
interface ExistsOptions
import { type ExistsOptions } from "https://deno.land/x/lume@v2.1.2/deps/fs.ts";

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.