Saxonberg Server API
    Preparing search index...

    Interface DirEntry

    Anatomy of one entry returned by list(). Mirrors the slice of fs.Dirent we actually use; keeping it narrow keeps callers from coupling to Node's API beyond what they need.

    interface DirEntry {
        absolutePath: string;
        isDir: boolean;
        isFile: boolean;
        name: string;
    }
    Index

    Properties

    absolutePath: string

    Absolute path inside the sandbox.

    isDir: boolean
    isFile: boolean
    name: string

    File name (no path).