Update stream.rs to use the is_dir function instead of explicitly checking ZipFile name
This commit is contained in:
parent
ee044c2a3c
commit
3e84dee439
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue