chore: Fix another Windows-specific error
This commit is contained in:
parent
91dcf305d7
commit
1e574a961a
1 changed files with 11 additions and 15 deletions
12
src/read.rs
12
src/read.rs
|
@ -701,18 +701,14 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
{
|
||||
let target_internal_path: PathBuf = target.into();
|
||||
let target_path = directory.as_ref().join(target_internal_path.clone());
|
||||
let target_is_dir =
|
||||
if let Ok(meta) = std::fs::metadata(&target_path) {
|
||||
let target_is_dir = if let Ok(meta) = std::fs::metadata(&target_path) {
|
||||
meta.is_dir()
|
||||
} else if let Some(target_in_archive) =
|
||||
self.index_for_path(&target_internal_path)
|
||||
{
|
||||
self
|
||||
.shared
|
||||
.files
|
||||
.get_index(target_in_archive)
|
||||
.unwrap()
|
||||
.is_dir()
|
||||
let (_, target_in_archive) =
|
||||
self.shared.files.get_index(target_in_archive).unwrap();
|
||||
target_in_archive.is_dir()
|
||||
} else {
|
||||
false
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue