From 199796cbbfb5be2216c4aad2a133838eee77d1b9 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Wed, 20 Jul 2022 23:48:48 +1000 Subject: [PATCH] Rm unnecessary `p.exist()` in `ZipArchive::extract` Signed-off-by: Jiahao XU --- src/read.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/read.rs b/src/read.rs index 728ddf57..65cf08f0 100644 --- a/src/read.rs +++ b/src/read.rs @@ -460,9 +460,7 @@ impl ZipArchive { 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(&mut file, &mut outfile)?;