diff --git a/src/read.rs b/src/read.rs index d5576115..e8b55107 100644 --- a/src/read.rs +++ b/src/read.rs @@ -1030,6 +1030,11 @@ impl ZipArchive { 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