summaryrefslogtreecommitdiffstats
path: root/src/decompress.rs
diff options
context:
space:
mode:
authorqkzk <qu3nt1n@gmail.com>2023-02-21 21:49:14 +0100
committerqkzk <qu3nt1n@gmail.com>2023-02-21 21:49:14 +0100
commit53763ed13a28bbf3d7aefd732d5dd1737083017c (patch)
tree5d6b60880edf2f3168ba0f1f8e51a514adb7a8d4 /src/decompress.rs
parent23451dbf304b399235e412969aa7e675f89d73a8 (diff)
refactor list_file_zip and document it.
Diffstat (limited to 'src/decompress.rs')
-rw-r--r--src/decompress.rs12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/decompress.rs b/src/decompress.rs
index a7d3575..d4bc001 100644
--- a/src/decompress.rs
+++ b/src/decompress.rs
@@ -49,17 +49,13 @@ pub fn decompress_xz(source: &Path) -> FmResult<()> {
Ok(())
}
+/// List files contained in a ZIP file.
+/// Will return an error if the ZIP file is corrupted.
pub fn list_files_zip<P>(source: P) -> FmResult<Vec<String>>
where
P: AsRef<Path>,
{
let file = File::open(source)?;
- let mut content = vec![];
- let mut zip = zip::ZipArchive::new(file)?;
-
- for i in 0..zip.len() {
- let file = zip.by_index(i)?;
- content.push(file.name().to_owned());
- }
- Ok(content)
+ let zip = zip::ZipArchive::new(file)?;
+ Ok(zip.file_names().map(|f| f.to_owned()).collect())
}