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 GitHub
parent ee044c2a3c
commit 3e84dee439
Signed by: DevComp
GPG key ID: B5690EEEBB952194

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() {