From 24f4b98ae4b27dbe641835c4de235bd41e25044d Mon Sep 17 00:00:00 2001 From: Brett Simons Date: Wed, 13 Mar 2024 09:51:38 -0400 Subject: [PATCH] Update stream.rs to use the is_dir function instead of explicitly checking ZipFile name --- src/read/stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {