chore: Refactor: can short-circuit handling of paths that start with MAIN_SEPARATOR, no matter what MAIN_SEPARATOR is
This commit is contained in:
parent
2adbbccb82
commit
74e76a94ca
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ 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.contains(MAIN_SEPARATOR))
|
||||
if (MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR))
|
||||
&& !original.ends_with('.')
|
||||
&& !original.starts_with(['.', MAIN_SEPARATOR])
|
||||
&& !original.starts_with(['.', '.', MAIN_SEPARATOR])
|
||||
|
|
Loading…
Add table
Reference in a new issue