Optionalchecktrue to throw an ERR_AMBIGUOUS_ARCHIVE error when calling FileEntry#getData if the local
file header of the entry disagrees with its central directory record in a way that could make other tools
(e.g. streaming readers based on local file headers) interpret the entry differently. This detects mismatched
filenames, general purpose bit flags (encryption, data descriptor and language encoding flags), compression
methods, CRC-32 checksums and sizes. The extra fields are not compared because the zip specification allows
them to differ.
This is the boolean form of ZipReaderOptions#strictness: true means "strict" and false means
any value but "strict". When both options are set, the value passed to FileEntry#getData takes
precedence over the value passed to the constructor of ZipReader, and strictness takes precedence
over checkAmbiguity when both are set at the same level. false downgrades an inherited "strict" value
to "balanced" and leaves an inherited "tolerant" value unchanged.
Optionalchecktrue to verify the authentication code of entries encrypted with AES. The verification detects encrypted
data tampered or corrupted after the encryption.
Optionalchecktrue to verify the CRC-32 checksum of the entry against the value stored in the zip file. The verification
is run on the decompressed data and covers the whole read pipeline. It also applies to entries encrypted with
AES in AE-1 format. It is skipped for entries in AE-2 format because they store a zeroed CRC-32 value.
Optionalchecktrue to validate the local file header of the entry against its central directory record when calling
FileEntry#getData, false to skip that validation. This is the entry-level half of
ZipReaderOptions#checkAmbiguity, exposed on its own so it can be enabled without the archive-level
checks and disabled without giving up the rest of ZipReaderOptions#strictness. It is the only way to
validate the local file headers of a self-extracting archive, since
GetEntriesOptions#checkAmbiguity rejects prepended data outright.
true compares the filename as well, like ZipReaderOptions#strictness set to "strict"; false
compares nothing, like "tolerant". An explicit value takes precedence over the strictness default at
every level.
true when ZipReaderOptions#strictness is "strict" or "balanced", false when
it is "tolerant".
Optionalchecktrue to throw an ERR_OVERLAPPING_ENTRY error when calling FileEntry#getData if the entry
overlaps with another entry on which FileEntry#getData has already been called (with the option
checkOverlappingEntry or checkOverlappingEntryOnly set to true).
Optionalchecktrue to throw an ERR_OVERLAPPING_ENTRY error when calling FileEntry#getData if the entry
overlaps with another entry on which FileEntry#getData has already been called (with the option
checkOverlappingEntry or checkOverlappingEntryOnly set to true) without trying to read the content of the
entry.
Optionalchecktrue to check only if the password is valid.
Optionalchecktrue to check the CRC-32 checksum of the entry.
Use ZipReaderOptions#checkCrc32 instead.
OptionalcommentThe encoding of the comment of the entry.
Optionalextracttrue to extract the appended data into ZipReader#appendedData.
Optionalextracttrue to extract the prepended data into ZipReader#prependedData.
OptionalfilenameThe encoding of the filename of the entry.
OptionalfilenameHow strictly the filename of each entry should be validated. A rejected name throws an
ERR_UNSAFE_FILENAME error carrying the offending name in its filename property.
"strict": reject the names rejected by "balanced", plus the names that do not map cleanly to a file
path, i.e. empty names and names containing a "." path component or an empty one (e.g. "a//b.txt")."balanced": reject names that would escape the directory they are extracted into, i.e. names containing
a ".." path component, and absolute names, i.e. names starting with "/", with a drive letter (e.g.
"C:/file.txt") or with two backslashes (UNC paths)."tolerant": never reject a name.A backslash is never interpreted as a path separator: it is a valid filename character on UNIX systems, and it also occurs as the trail byte of legitimate double-byte filenames (e.g. CP932) decoded with another charset.
Names are validated, never rewritten, so the filename reported for an entry always matches its central directory record.
The value of GetEntriesOptions#strictness.
OptionalmaxThe maximum number of bytes tolerated after the zip structure before the archive is rejected. Defaults to
0 when GetEntriesOptions#strictness is "strict", 65535 when it is "balanced", and Infinity
when it is "tolerant".
An explicit value takes precedence over the strictness default at every level, so it can loosen "strict"
or reintroduce a rejection under "tolerant". It also bounds how far back the end of central directory
record is searched for, so a value smaller than the amount of data actually appended surfaces an
ERR_EOCDR_NOT_FOUND error when the record lies beyond the searched region and an
ERR_AMBIGUOUS_ARCHIVE error otherwise.
Optionalpasstrue to read the data as-is without decompressing it and without decrypting it.
OptionalpasswordThe password used to decrypt the content of the entry.
Optionalpreventtrue to prevent closing of WritableWriter#writable when calling FileEntry#getData.
It only applies to the writable owned by the caller. It is ignored by the Writer instances returning the written data, such as BlobWriter or TextWriter, whose writable is created internally and must be closed for Writer#getData to resolve.
OptionalrawThe password used to encrypt the content of the entry (raw).
OptionalsignalThe AbortSignal instance used to cancel the decompression.
OptionalstrictnessHow tolerant the reader should be when the local file header of an entry disagrees with its central directory record. Any difference throws an ERR_AMBIGUOUS_ARCHIVE error.
"strict": compare the filename, the general purpose bit flag, the compression method, the CRC-32
checksum and the sizes."balanced": compare everything except the filename."tolerant": compare nothing and trust the central directory record.Every field except the filename is read from the local file header anyway, to locate the entry data, so
the comparison "balanced" performs reads no additional bytes. Comparing the filename reads the filename
bytes as well, which costs one extra read per entry whenever the local file header carries no extra field
— the common case in practice. Use ZipReaderOptions#checkLocalDirectory to request or suppress the
whole comparison explicitly.
Optionaltransfertrue to transfer stream ownership to web workers.
Optionalusetrue to use the native API CompressionStream/DecompressionStream to compress/decompress data.
When compressing, the native API is only used when level is undefined or equal to 6, see ZipWriterConstructorOptions#level.
Optionalusetrue to use web workers to compress/decompress data in non-blocking background processes.
OptionaldecodeThe function called for decoding the filename and the comment of the entry.
The raw text value.
The encoding of the text.
The type of the decoded text, "filename" or "comment".
The decoded text value or undefined if the raw text value should be decoded by zip.js.
OptionaldecryptThe function called for decrypting the central directory when it is encrypted (see the Strong Encryption Specification in the ZIP format specification). Without this function, reading such an archive throws an ERR_ENCRYPTED_CENTRAL_DIRECTORY error. zip.js provides the encrypted data and the related metadata but does not implement the decryption itself.
The raw data stored in place of the central directory, i.e. the decryption header followed by the encrypted (and possibly compressed) central directory, as stored in the zip file.
OptionalencryptionInfo: DirectoryEncryptionInfo
The encryption metadata read from the Zip64 end of central directory record, or
undefined if the zip file does not contain a version 2 record.
The decrypted and decompressed central directory records.
OptionalnormalizeThe function called for normalizing the filename of each entry, e.g. to repair the names rejected by GetEntriesOptions#filenameValidation.
It is called with the decoded filename, after GetEntriesOptions#decodeText and before the name is
validated, so a name it fails to repair is still rejected. The returned name becomes the name of the entry:
it is used to detect directory entries by their trailing "/", and to detect duplicate filenames when
GetEntriesOptions#checkAmbiguity is set, so two names normalized into the same name are reported as
an ERR_AMBIGUOUS_ARCHIVE error instead of silently shadowing each other. The raw filename remains
available in EntryMetaData#rawFilename.
The decoded filename.
The normalized filename or undefined to keep the decoded filename.
Represents the options passed to the constructor of ZipReader, and
{@link ZipDirectory}#import*.