diff --git a/src/read.rs b/src/read.rs index c5ea5397..a2a0c5e0 100644 --- a/src/read.rs +++ b/src/read.rs @@ -351,6 +351,11 @@ impl<'a> ZipFile<'a> { pub fn crc32(&self) -> u32 { self.data.crc32 } + + /// Get the starting offset of the data of the compressed file + pub fn data_start(&self) -> u64 { + self.data.data_start + } } impl<'a> Read for ZipFile<'a> {