Merge pull request from zip-rs/oldpr368

feat: Added function to get if a file is encrypted or not
This commit is contained in:
Chris Hennick 2024-07-17 17:25:50 +00:00 committed by GitHub
commit 6b797b1ba9
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -1717,7 +1717,7 @@ impl<'a> ZipFile<'a> {
/// `foo/../bar` as `foo/bar` (instead of `bar`). Because of this,
/// [`ZipFile::enclosed_name`] is the better option in most scenarios.
///
/// [`ParentDir`]: `Component::ParentDir`
/// [`ParentDir`]: `PathBuf::Component::ParentDir`
pub fn mangled_name(&self) -> PathBuf {
self.get_metadata().file_name_sanitized()
}
@ -1746,6 +1746,11 @@ impl<'a> ZipFile<'a> {
self.get_metadata().compression_method
}
/// Get if the files is encrypted or not
pub fn encrypted(&self) -> bool {
self.data.encrypted
}
/// Get the size of the file, in bytes, in the archive
pub fn compressed_size(&self) -> u64 {
self.get_metadata().compressed_size