chore: Bug fix: must recreate if . or .. is a path element
This commit is contained in:
parent
001967186a
commit
5cd448802f
1 changed files with 2 additions and 1 deletions
|
@ -219,7 +219,8 @@ impl Zip64CentralDirectoryEnd {
|
|||
pub(crate) fn path_to_string<T: AsRef<Path>>(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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue