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

    Interface FilesystemEntry

    A single entry in an exported root filesystem snapshot.

    interface FilesystemEntry {
        content?: string;
        encoding?: "utf8" | "base64";
        gid: number;
        mode: string;
        path: string;
        target?: string;
        type: "file" | "directory" | "symlink";
        uid: number;
    }
    Index

    Properties

    content?: string
    encoding?: "utf8" | "base64"
    gid: number
    mode: string
    path: string
    target?: string
    type: "file" | "directory" | "symlink"
    uid: number