Databricks SDK for JavaScript
    Preparing search index...
    interface DirectoryEntry {
        fileSize?: number;
        isDirectory?: boolean;
        lastModified?: number;
        name?: string;
        path?: string;
    }
    Index

    Properties

    fileSize?: number

    The length of the file in bytes. This field is omitted for directories.

    isDirectory?: boolean

    True if the path is a directory.

    lastModified?: number

    Last modification time of given file in milliseconds since unix epoch.

    name?: string

    The name of the file or directory. This is the last component of the path.

    path?: string

    The absolute path of the file or directory.