1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
autoconfig/src/installer/utils/extractor/zip.rs

31 lines
No EOL
923 B
Rust

use std::{fs::{
File,
create_dir_all
}, io, path::{self, PathBuf}};
pub fn extract_file(path: &PathBuf, outdir: &str) -> Option<()> {
let file = File::open(&path).ok()?;
let mut archive = zip::ZipArchive::new(file).ok()?;
let path = path::Path::new(super::super::TEMP_FOLDER).join(outdir);
for i in 0..archive.len() {
let mut file = archive.by_index(i).ok()?;
let file_path = file.enclosed_name()?;
let output_path = path.join(file_path);
if (&*file.name()).ends_with('/') {
create_dir_all(&output_path).ok()?;
} else {
if let Some(p) = output_path.parent() {
if !p.exists() {
create_dir_all(&p).ok()?;
}
}
let mut outfile = File::create(&output_path).ok()?;
io::copy(&mut file, &mut outfile).ok()?;
}
}
Some(())
}