From af33ed343da5769e0587d638e435d67151990f10 Mon Sep 17 00:00:00 2001 From: nick Date: Sun, 11 Aug 2024 08:00:08 -0400 Subject: [PATCH] feat: Expose `ZipArchive::central_directory_start` (#232) --- src/read.rs | 5 +++++ 1 file changed, 5 insertions(+) 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