Zip Archive Information
data class ZipArchiveInformation(val dataChunkDescriptors: List<ByteRange>, val signature: ZipArchiveSignature, val zipEntries: List<ZipEntry>)
Zip archive information containing all file entries in the zip and their chunk byte range configuration
Constructors
Link copied to clipboard
constructor(dataChunkDescriptors: List<ByteRange>, signature: ZipArchiveSignature, zipEntries: List<ZipEntry>)
Properties
Link copied to clipboard
The chunk configuration used for the zip archive.
Link copied to clipboard
Contains the "signature" of a ZIP archive and information on how it was calculated. This can be used to identify a ZIP archive using only a small portion of the ZIP archive data.
Link copied to clipboard
All file entries within the zip archive.