diff --git a/src/read/stream.rs b/src/read/stream.rs index bb8e5ee5..a8ae65d5 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -71,9 +71,7 @@ impl ZipStreamReader { fs::create_dir_all(&outpath)?; } else { if let Some(p) = outpath.parent() { - if !p.exists() { - fs::create_dir_all(&p)?; - } + fs::create_dir_all(&p)?; } let mut outfile = fs::File::create(&outpath)?; io::copy(file, &mut outfile)?;