From ce818e4df13ca504c41c819e0046962325abf812 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 15 May 2024 16:08:39 -0700 Subject: [PATCH] chore: More bug fixes for Windows-specific symlink code --- src/read.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/read.rs b/src/read.rs index 837e45aa..797ce1a3 100644 --- a/src/read.rs +++ b/src/read.rs @@ -13,7 +13,6 @@ use crate::types::{AesMode, AesVendorVersion, DateTime, System, ZipFileData}; use crate::zipcrypto::{ZipCryptoReader, ZipCryptoReaderValid, ZipCryptoValidator}; use indexmap::IndexMap; use std::borrow::Cow; -use std::convert::Infallible; use std::ffi::OsString; use std::fs::create_dir_all; use std::io::{self, copy, prelude::*, sink}; @@ -703,12 +702,16 @@ impl ZipArchive { 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) { + 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.by_index_raw(target_in_archive)?.is_dir() + self + .shared + .files + .get_index(file_number) + .is_dir() } else { false }; @@ -931,7 +934,7 @@ impl ZipArchive { } #[cfg(unix)] -fn try_utf8_to_os_string(utf8_bytes: Vec) -> Result { +fn try_utf8_to_os_string(utf8_bytes: Vec) -> Result { use std::os::unix::ffi::OsStringExt; Ok(OsString::from_vec(utf8_bytes)) }