From cd867ecdc2a5c0287f7faa18ba3a6b17211f583c Mon Sep 17 00:00:00 2001 From: Joel Depooter Date: Tue, 2 Jul 2019 16:27:45 -0700 Subject: [PATCH] Add ZipFile::header_start This function returns the offset of the local zip header for a ZipFile object --- src/read.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/read.rs b/src/read.rs index e01e1edc..d8a80e38 100644 --- a/src/read.rs +++ b/src/read.rs @@ -508,6 +508,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> {