diff --git a/src/read.rs b/src/read.rs index 422e3f4e..031c1d87 100644 --- a/src/read.rs +++ b/src/read.rs @@ -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