feat: Expose ZipArchive::central_directory_start
(#232)
This commit is contained in:
parent
3f6768ec5a
commit
af33ed343d
1 changed files with 5 additions and 0 deletions
|
@ -1030,6 +1030,11 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue