Rm unnecessary p.exist() in ZipArchive::extract

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-20 23:48:48 +10:00
parent bb230ef56a
commit 199796cbbf
No known key found for this signature in database
GPG key ID: 591C0B03040416D6

View file

@ -460,9 +460,7 @@ impl<R: Read + io::Seek> ZipArchive<R> {
fs::create_dir_all(&outpath)?; fs::create_dir_all(&outpath)?;
} else { } else {
if let Some(p) = outpath.parent() { 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)?; let mut outfile = fs::File::create(&outpath)?;
io::copy(&mut file, &mut outfile)?; io::copy(&mut file, &mut outfile)?;