Merge remote-tracking branch 'brettsimons/patch-1' into oldpr425
This commit is contained in:
commit
621dd21921
2 changed files with 2 additions and 2 deletions
|
@ -558,7 +558,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
|
||||
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() {
|
||||
|
|
|
@ -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