diff --git a/src/read.rs b/src/read.rs index aca28df2..d3e0960c 100644 --- a/src/read.rs +++ b/src/read.rs @@ -529,6 +529,11 @@ impl<'a> ZipFile<'a> { pub fn data_start(&self) -> u64 { self.data.data_start } + + /// Get the starting offset of the zip header for this file + pub fn header_start(&self) -> u64 { + self.data.header_start + } } impl<'a> Read for ZipFile<'a> {