Rm unnecessary p.exist()
check in ZipStreamReader::extract
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
5b6d9557c6
commit
8f7c43c227
1 changed files with 1 additions and 3 deletions
|
@ -71,10 +71,8 @@ impl<R: Read> ZipStreamReader<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(file, &mut outfile)?;
|
io::copy(file, &mut outfile)?;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue