Merge branch 'manuthambi-pull-request-file-names'
This commit is contained in:
commit
e485cbf576
2 changed files with 12 additions and 0 deletions
|
@ -256,6 +256,11 @@ impl<R: Read+io::Seek> ZipArchive<R>
|
||||||
&self.comment
|
&self.comment
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns an iterator over all the file and directory names in this archive.
|
||||||
|
pub fn file_names(&self) -> impl Iterator<Item = &str> {
|
||||||
|
self.names_map.keys().map(|s| s.as_str())
|
||||||
|
}
|
||||||
|
|
||||||
/// Search for a file entry by name
|
/// Search for a file entry by name
|
||||||
pub fn by_name<'a>(&'a mut self, name: &str) -> ZipResult<ZipFile<'a>>
|
pub fn by_name<'a>(&'a mut self, name: &str) -> ZipResult<ZipFile<'a>>
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
use std::io::prelude::*;
|
use std::io::prelude::*;
|
||||||
use zip::write::FileOptions;
|
use zip::write::FileOptions;
|
||||||
use std::io::Cursor;
|
use std::io::Cursor;
|
||||||
|
use std::iter::FromIterator;
|
||||||
|
use std::collections::HashSet;
|
||||||
|
|
||||||
// This test asserts that after creating a zip file, then reading its contents back out,
|
// This test asserts that after creating a zip file, then reading its contents back out,
|
||||||
// the extracted data will *always* be exactly the same as the original data.
|
// the extracted data will *always* be exactly the same as the original data.
|
||||||
|
@ -36,6 +38,11 @@ fn write_to_zip_file(file: &mut Cursor<Vec<u8>>) -> zip::result::ZipResult<()> {
|
||||||
fn read_zip_file(zip_file: &mut Cursor<Vec<u8>>) -> zip::result::ZipResult<String> {
|
fn read_zip_file(zip_file: &mut Cursor<Vec<u8>>) -> zip::result::ZipResult<String> {
|
||||||
let mut archive = zip::ZipArchive::new(zip_file).unwrap();
|
let mut archive = zip::ZipArchive::new(zip_file).unwrap();
|
||||||
|
|
||||||
|
let expected_file_names = [ "test/", "test/☃.txt", "test/lorem_ipsum.txt" ];
|
||||||
|
let expected_file_names = HashSet::from_iter(expected_file_names.iter().copied());
|
||||||
|
let file_names = archive.file_names().collect::<HashSet<_>>();
|
||||||
|
assert_eq!(file_names, expected_file_names);
|
||||||
|
|
||||||
let mut file = archive.by_name("test/lorem_ipsum.txt")?;
|
let mut file = archive.by_name("test/lorem_ipsum.txt")?;
|
||||||
|
|
||||||
let mut contents = String::new();
|
let mut contents = String::new();
|
||||||
|
|
Loading…
Add table
Reference in a new issue