diff --git a/examples/extract.rs b/examples/extract.rs index fcd23e3a..5aa67570 100644 --- a/examples/extract.rs +++ b/examples/extract.rs @@ -18,8 +18,10 @@ fn real_main() -> i32 { for i in 0..archive.len() { let mut file = archive.by_index(i).unwrap(); - #[allow(deprecated)] - let outpath = file.sanitized_name(); + let outpath = match file.name_as_child() { + Some(path) => path, + None => continue, + }; { let comment = file.comment(); @@ -29,17 +31,13 @@ fn real_main() -> i32 { } if (&*file.name()).ends_with('/') { - println!( - "File {} extracted to \"{}\"", - i, - outpath.as_path().display() - ); + println!("File {} extracted to \"{}\"", i, outpath.display()); fs::create_dir_all(&outpath).unwrap(); } else { println!( "File {} extracted to \"{}\" ({} bytes)", i, - outpath.as_path().display(), + outpath.display(), file.size() ); if let Some(p) = outpath.parent() { diff --git a/examples/file_info.rs b/examples/file_info.rs index bed1b818..dd72e776 100644 --- a/examples/file_info.rs +++ b/examples/file_info.rs @@ -19,8 +19,13 @@ fn real_main() -> i32 { for i in 0..archive.len() { let file = archive.by_index(i).unwrap(); - #[allow(deprecated)] - let outpath = file.sanitized_name(); + let outpath = match file.name_as_child() { + Some(path) => path, + None => { + println!("Entry {} has a suspicious path", file.name()); + continue; + } + }; { let comment = file.comment(); @@ -33,13 +38,13 @@ fn real_main() -> i32 { println!( "Entry {} is a directory with name \"{}\"", i, - outpath.as_path().display() + outpath.display() ); } else { println!( "Entry {} is a file with name \"{}\" ({} bytes)", i, - outpath.as_path().display(), + outpath.display(), file.size() ); } diff --git a/tests/zip64_large.rs b/tests/zip64_large.rs index c4b5a6b4..ae790a54 100644 --- a/tests/zip64_large.rs +++ b/tests/zip64_large.rs @@ -195,12 +195,11 @@ fn zip64_large() { for i in 0..archive.len() { let mut file = archive.by_index(i).unwrap(); - #[allow(deprecated)] - let outpath = file.sanitized_name(); + let outpath = file.name_as_child().unwrap(); println!( "Entry {} has name \"{}\" ({} bytes)", i, - outpath.as_path().display(), + outpath.display(), file.size() ); diff --git a/tests/zip_crypto.rs b/tests/zip_crypto.rs index aabe40d6..26626495 100644 --- a/tests/zip_crypto.rs +++ b/tests/zip_crypto.rs @@ -75,8 +75,7 @@ fn encrypted_file() { .by_index_decrypt(0, "test".as_bytes()) .unwrap() .unwrap(); - #[allow(deprecated)] - let file_name = file.sanitized_name(); + let file_name = file.name_as_child().unwrap(); assert_eq!(file_name, std::path::PathBuf::from("test.txt")); let mut data = Vec::new();