Update example to use new functionality

This commit is contained in:
Mathijs van de Nes 2019-04-06 16:49:09 +02:00
parent 2314abc307
commit e6a1c68a64

View file

@ -60,26 +60,23 @@ fn zip_dir<T>(it: &mut Iterator<Item=DirEntry>, prefix: &str, writer: T, method:
let mut buffer = Vec::new();
for entry in it {
let path = entry.path();
let name = path.strip_prefix(Path::new(prefix))
.unwrap()
.to_str()
.unwrap();
let name = path.strip_prefix(Path::new(prefix)).unwrap();
// Write file or directory explicitly
// Some unzip tools unzip files with directory paths correctly, some do not!
if path.is_file() {
println!("adding file {:?} as {:?} ...", path, name);
zip.start_file(name, options)?;
zip.start_file_from_path(name, options)?;
let mut f = File::open(path)?;
f.read_to_end(&mut buffer)?;
zip.write_all(&*buffer)?;
buffer.clear();
} else if !name.is_empty() {
} else if name.as_os_str().len() != 0 {
// Only if not root! Avoids path spec / warning
// and mapname conversion failed error on unzip
println!("adding dir {:?} as {:?} ...", path, name);
zip.add_directory(name, options)?;
zip.add_directory_from_path(name, options)?;
}
}
zip.finish()?;