Merge pull request #64 from zip-rs/oldpr368
feat: Added function to get if a file is encrypted or not
This commit is contained in:
commit
6b797b1ba9
1 changed files with 6 additions and 1 deletions
|
@ -1717,7 +1717,7 @@ impl<'a> ZipFile<'a> {
|
||||||
/// `foo/../bar` as `foo/bar` (instead of `bar`). Because of this,
|
/// `foo/../bar` as `foo/bar` (instead of `bar`). Because of this,
|
||||||
/// [`ZipFile::enclosed_name`] is the better option in most scenarios.
|
/// [`ZipFile::enclosed_name`] is the better option in most scenarios.
|
||||||
///
|
///
|
||||||
/// [`ParentDir`]: `Component::ParentDir`
|
/// [`ParentDir`]: `PathBuf::Component::ParentDir`
|
||||||
pub fn mangled_name(&self) -> PathBuf {
|
pub fn mangled_name(&self) -> PathBuf {
|
||||||
self.get_metadata().file_name_sanitized()
|
self.get_metadata().file_name_sanitized()
|
||||||
}
|
}
|
||||||
|
@ -1746,6 +1746,11 @@ impl<'a> ZipFile<'a> {
|
||||||
self.get_metadata().compression_method
|
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
|
/// Get the size of the file, in bytes, in the archive
|
||||||
pub fn compressed_size(&self) -> u64 {
|
pub fn compressed_size(&self) -> u64 {
|
||||||
self.get_metadata().compressed_size
|
self.get_metadata().compressed_size
|
||||||
|
|
Loading…
Add table
Reference in a new issue