circu.js
    Preparing search index...

    Interface DirEnt

    Read directory contents

    Directory path

    Array of filenames (excluding '.' and '..')

    Error if directory doesn't exist or read fails

    interface DirEnt {
        isBlockDevice: boolean;
        isCharacterDevice: boolean;
        isDirectory: boolean;
        isFIFO: boolean;
        isFile: boolean;
        isSocket: boolean;
        isSymbolicLink: boolean;
        name: string;
    }
    Index

    Properties

    isBlockDevice: boolean
    isCharacterDevice: boolean
    isDirectory: boolean
    isFIFO: boolean
    isFile: boolean
    isSocket: boolean
    isSymbolicLink: boolean
    name: string