Update stream.rs to use the is_dir function instead of explicitly checking ZipFile name
This commit is contained in:
parent
722234711f
commit
24f4b98ae4
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ impl<R: Read> ZipStreamReader<R> {
|
||||||
|
|
||||||
let outpath = self.0.join(filepath);
|
let outpath = self.0.join(filepath);
|
||||||
|
|
||||||
if file.name().ends_with('/') {
|
if file.is_dir() {
|
||||||
fs::create_dir_all(&outpath)?;
|
fs::create_dir_all(&outpath)?;
|
||||||
} else {
|
} else {
|
||||||
if let Some(p) = outpath.parent() {
|
if let Some(p) = outpath.parent() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue