Merge pull request #75 from repi/seperator-fix
Fix file name sanitization for zips with OS incompatible path separators
This commit is contained in:
commit
ae18b244ef
1 changed files with 13 additions and 2 deletions
15
src/types.rs
15
src/types.rs
|
@ -66,9 +66,20 @@ impl ZipFileData {
|
||||||
let no_null_filename = match self.file_name.find('\0') {
|
let no_null_filename = match self.file_name.find('\0') {
|
||||||
Some(index) => &self.file_name[0..index],
|
Some(index) => &self.file_name[0..index],
|
||||||
None => &self.file_name,
|
None => &self.file_name,
|
||||||
};
|
}.to_string();
|
||||||
|
|
||||||
::std::path::Path::new(no_null_filename)
|
// zip files can contain both / and \ as separators regardless of the OS
|
||||||
|
// and as we want to return a sanitized PathBuf that only supports the
|
||||||
|
// OS separator let's convert incompatible separators to compatible ones
|
||||||
|
let separator = ::std::path::MAIN_SEPARATOR;
|
||||||
|
let opposite_separator = match separator {
|
||||||
|
'/' => '\\',
|
||||||
|
'\\' | _ => '/',
|
||||||
|
};
|
||||||
|
let filename =
|
||||||
|
no_null_filename.replace(&opposite_separator.to_string(), &separator.to_string());
|
||||||
|
|
||||||
|
::std::path::Path::new(&filename)
|
||||||
.components()
|
.components()
|
||||||
.filter(|component| match *component {
|
.filter(|component| match *component {
|
||||||
::std::path::Component::Normal(..) => true,
|
::std::path::Component::Normal(..) => true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue