feat: Expose ZipArchive::central_directory_start (#232)

This commit is contained in:
nick 2024-08-11 08:00:08 -04:00 committed by GitHub
parent 3f6768ec5a
commit af33ed343d
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -1030,6 +1030,11 @@ impl<R: Read + Seek> ZipArchive<R> {
self.shared.files.len()
}
/// Get the starting offset of the zip central directory.
pub fn central_directory_start(&self) -> u64 {
self.shared.dir_start
}
/// Whether this zip archive contains no files
pub fn is_empty(&self) -> bool {
self.len() == 0