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

    Interface LocalDirectory

    Represents the local file header fields of an entry, read when getting the entry data.

    interface LocalDirectory {
        bitFlag: EntryBitFlag;
        compressedSize?: number;
        compressionMethod?: number;
        encrypted: boolean;
        extraField?: Map<number, EntryExtraField>;
        extraFieldAES?: EntryExtraFieldAES;
        extraFieldExtendedTimestamp?: EntryExtraField;
        extraFieldInfoZip?: EntryExtraField;
        extraFieldLength: number;
        extraFieldNTFS?: EntryExtraField;
        extraFieldUnicodeComment?: EntryExtraFieldUnicode;
        extraFieldUnicodePath?: EntryExtraFieldUnicode;
        extraFieldUnix?: EntryExtraField;
        extraFieldUSDZ?: EntryExtraField;
        extraFieldZip64?: EntryExtraField;
        filenameLength: number;
        lastModDate: Date;
        rawBitFlag: number;
        rawExtraField: Uint8Array;
        rawLastModDate: number;
        signature?: number;
        uncompressedSize?: number;
        version: number;
    }
    Index
    bitFlag: EntryBitFlag

    The general purpose bit flag.

    compressedSize?: number

    The compressed size of the content.

    compressionMethod?: number

    The compression method.

    encrypted: boolean

    true if the entry is encrypted.

    extraField?: Map<number, EntryExtraField>

    The extra field.

    extraFieldAES?: EntryExtraFieldAES

    The AES extra field.

    extraFieldExtendedTimestamp?: EntryExtraField

    The extended timestamp extra field.

    extraFieldInfoZip?: EntryExtraField

    The Info-ZIP Unix extra field.

    extraFieldLength: number

    The length of the extra field in bytes.

    extraFieldNTFS?: EntryExtraField

    The NTFS extra field.

    extraFieldUnicodeComment?: EntryExtraFieldUnicode

    The Unicode comment extra field.

    extraFieldUnicodePath?: EntryExtraFieldUnicode

    The Unicode path extra field.

    extraFieldUnix?: EntryExtraField

    The Unix extra field.

    extraFieldUSDZ?: EntryExtraField

    The USDZ extra field.

    extraFieldZip64?: EntryExtraField

    The Zip64 extra field.

    filenameLength: number

    The length of the filename in bytes.

    lastModDate: Date

    The last modification date.

    rawBitFlag: number

    The general purpose bit flag (raw).

    rawExtraField: Uint8Array

    The extra field (raw).

    rawLastModDate: number

    The last modification date (raw).

    signature?: number

    The signature (CRC32 checksum) of the content.

    uncompressedSize?: number

    The uncompressed size of the content.

    version: number

    The "Version" field.