Crumbtrail
    Preparing search index...

    Interface IZFileSystemNode

    interface IZFileSystemNode {
        created?: string;
        extension: string;
        name: string;
        parent: string;
        path: string;
        size?: bigint;
        title: string;
        type: ZFileSystemNodeType;
        updated?: string;
    }
    Index

    Properties

    created?: string

    The creation date of the node.

    extension: string

    The file extension.

    Calculated from the path.

    name: string

    The file or folder name with the extension.

    Calculated from the path.

    parent: string

    Parent directory path.

    path: string

    The absolute path of the node.

    size?: bigint

    The size of the node in bytes.

    title: string

    File title.

    The name without the extension. Calculated from the path.

    The type of the node (file or folder).

    updated?: string

    The modification date of the node.