IBM Aspera JavaScript Library
    Preparing search index...

    Interface DirectoryEntry

    A single entry in a directory listing

    interface DirectoryEntry {
        lastModified: number;
        relativePath: string;
        size: number;
        type: EntryType;
    }
    Index

    Properties

    lastModified: number

    Last modified timestamp in milliseconds since the UNIX epoch.

    relativePath: string

    Path relative to the traversal root, using forward slashes on all platforms.

    size: number

    Size in bytes. 0 for directories.

    type: EntryType

    The entry type: "file" or "directory".