diff --git a/src/spec.rs b/src/spec.rs index a24da82f..b2f9f221 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -219,7 +219,8 @@ impl Zip64CentralDirectoryEnd { pub(crate) fn path_to_string>(path: T) -> String { let mut maybe_original = None; if let Some(original) = path.as_ref().to_str() { - if MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR) { + if (MAIN_SEPARATOR == '/' || !original.contains(MAIN_SEPARATOR)) + && !original.ends_with('.') && !original.contains("./") { if original.starts_with(MAIN_SEPARATOR) { maybe_original = Some(&original[1..]); } else {