Use add_directory in write_dir example

Fix compatibility with some unzip tools.
This commit is contained in:
jonpas 2019-03-30 21:06:43 +01:00 committed by GitHub
parent d1a0a7d472
commit c14a8c7f5d
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,14 +65,21 @@ fn zip_dir<T>(it: &mut Iterator<Item=DirEntry>, prefix: &str, writer: T, method:
.to_str()
.unwrap();
// Write file or directory explicitly
// Some unzip tools unzip files with directory paths correctly, some do not!
if path.is_file() {
println!("adding {:?} as {:?} ...", path, name);
println!("adding file {:?} as {:?} ...", path, name);
zip.start_file(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() {
// 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.finish()?;
@ -93,4 +100,4 @@ fn doit(src_dir: &str, dst_file: &str, method: zip::CompressionMethod) -> zip::r
zip_dir(&mut it.filter_map(|e| e.ok()), src_dir, file, method)?;
Ok(())
}
}