diff --git a/src/read.rs b/src/read.rs index b1cb0300..0a39faef 100644 --- a/src/read.rs +++ b/src/read.rs @@ -558,7 +558,7 @@ impl ZipArchive { let outpath = directory.as_ref().join(filepath); - if file.name().ends_with('/') { + if file.is_dir() { fs::create_dir_all(&outpath)?; } else { if let Some(p) = outpath.parent() { diff --git a/src/read/stream.rs b/src/read/stream.rs index 80496bcb..f99a0e5a 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -67,7 +67,7 @@ impl ZipStreamReader { 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() {