effect-io-ai

Package: effect
Module: FileSystem

FileSystem.File.Type

Enumeration of possible file system entry types.

Details

Represents the different types of entries that can exist in a file system, from regular files to special device files and symbolic links.

Signature

type Type = | "File"
    | "Directory"
    | "SymbolicLink"
    | "BlockDevice"
    | "CharacterDevice"
    | "FIFO"
    | "Socket"
    | "Unknown"

Source

Since v4.0.0