@zip.js/zip.js
    Preparing search index...

    Interface EntryExtraFieldNTFS

    Represents the NTFS extra field record of an entry (0x000a), storing the dates as Windows FILETIME values.

    interface EntryExtraFieldNTFS {
        creationDate?: Date;
        data: Uint8Array;
        lastAccessDate?: Date;
        lastModDate?: Date;
        rawCreationDate?: bigint;
        rawLastAccessDate?: bigint;
        rawLastModDate?: bigint;
        type: number;
    }

    Hierarchy (View Summary)

    Index
    creationDate?: Date

    The creation date.

    data: Uint8Array

    The data of the extra field.

    lastAccessDate?: Date

    The last access date.

    lastModDate?: Date

    The last modification date.

    rawCreationDate?: bigint

    The creation date (raw), as a Windows FILETIME value.

    rawLastAccessDate?: bigint

    The last access date (raw), as a Windows FILETIME value.

    rawLastModDate?: bigint

    The last modification date (raw), as a Windows FILETIME value.

    type: number

    The type (header id) of the extra field.