Update stream.rs to use the is_dir function instead of explicitly checking ZipFile name

This commit is contained in:
Brett Simons 2024-03-13 09:51:38 -04:00 committed by Chris Hennick
parent 722234711f
commit 24f4b98ae4
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -67,7 +67,7 @@ impl<R: Read> ZipStreamReader<R> {
let outpath = self.0.join(filepath);
if file.name().ends_with('/') {
if file.is_dir() {
fs::create_dir_all(&outpath)?;
} else {
if let Some(p) = outpath.parent() {