diff --git a/Cargo.toml b/Cargo.toml index 0c88d4a6..c9917ea8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zip" -version = "0.2.0" +version = "0.2.1" authors = ["Mathijs van de Nes "] license = "MIT" repository = "https://github.com/mvdnes/zip-rs.git" diff --git a/examples/extract.rs b/examples/extract.rs index 619235f0..c4ce4c3c 100644 --- a/examples/extract.rs +++ b/examples/extract.rs @@ -39,7 +39,7 @@ fn real_main() -> i32 if (&*file.name()).ends_with("/") { create_directory(&outpath, perms); - + } else { write_file(&mut file, &outpath, perms); diff --git a/src/read.rs b/src/read.rs index 24e2a154..2b0e36de 100644 --- a/src/read.rs +++ b/src/read.rs @@ -212,7 +212,7 @@ fn central_header_to_zip_file(reader: &mut R) -> ZipResult String::from_utf8_lossy(&*file_name_raw).into_owned(), - false => file_name_raw.from_cp437(), + false => file_name_raw.clone().from_cp437(), }; let file_comment = match is_utf8 { @@ -249,6 +249,7 @@ fn central_header_to_zip_file(reader: &mut R) -> ZipResult ZipFile<'a> { pub fn name(&self) -> &str { &*self.data.file_name } + /// Get the name of the file, in the raw (internal) byte representation. + pub fn name_raw(&self) -> &[u8] { + &*self.data.file_name_raw + } /// Get the comment of the file pub fn comment(&self) -> &str { &*self.data.file_comment diff --git a/src/types.rs b/src/types.rs index 6d632115..ad76bf37 100644 --- a/src/types.rs +++ b/src/types.rs @@ -49,6 +49,8 @@ pub struct ZipFileData pub uncompressed_size: u64, /// Name of the file pub file_name: String, + /// Raw file name. To be used when file_name was incorrectly decoded. + pub file_name_raw: Vec, /// File comment pub file_comment: String, /// Specifies where the local header of the file starts diff --git a/src/write.rs b/src/write.rs index b9bbd702..a609afaf 100644 --- a/src/write.rs +++ b/src/write.rs @@ -178,6 +178,8 @@ impl ZipWriter let header_start = try!(writer.seek(io::SeekFrom::Current(0))); let permissions = options.permissions.unwrap_or(0o100644); + let file_name = name.into(); + let file_name_raw = file_name.clone().into_bytes(); let mut file = ZipFileData { system: System::Unix, @@ -188,7 +190,8 @@ impl ZipWriter crc32: 0, compressed_size: 0, uncompressed_size: 0, - file_name: name.into(), + file_name: file_name, + file_name_raw: file_name_raw, file_comment: String::new(), header_start: header_start, data_start: 0,