agentOS API Reference - v0.2.0-rc.3
    Preparing search index...

    Interface DirEntry

    A directory entry with metadata (returned by readdirRecursive).

    interface DirEntry {
        path: string;
        size: number;
        type: "file" | "directory" | "symlink";
    }
    Index

    Properties

    Properties

    path: string

    Absolute path to the entry.

    size: number
    type: "file" | "directory" | "symlink"