Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Metadata about a file entry in a zip archive.

    interface IZipEntry {
        compressedSize: number;
        compressionMethod: number;
        entrySize: number;
        numChunks: number;
        path: string;
        startChunkIndex: number;
        startOffsetInChunk: number;
        uncompressedSize: number;
    }

    Properties

    compressedSize: number

    The size of the compressed data.

    compressionMethod: number

    The compression method used. See chapter 4.4.5 in https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT The only supported methods are: 0 - The file is stored (no compression) 8 - The file is Deflated

    entrySize: number

    The size of the local header, compressed data, and data descriptor in bytes.

    numChunks: number
    path: string

    The file path of the zip entry.

    startChunkIndex: number

    The index of the chunk where the start of the local header can be found

    startOffsetInChunk: number

    The start offset of the local header within the start chunk.

    uncompressedSize: number

    The size of the uncompressed data.