refactor: use iterator for file list init
This commit is contained in:
parent
4ce5791164
commit
32b2f5b483
1 changed files with 3 additions and 6 deletions
|
@ -208,18 +208,15 @@ impl<A: Read + Write + io::Seek> ZipWriter<A> {
|
||||||
let (archive_offset, directory_start, number_of_files) =
|
let (archive_offset, directory_start, number_of_files) =
|
||||||
ZipArchive::get_directory_counts(&mut readwriter, &footer, cde_start_pos)?;
|
ZipArchive::get_directory_counts(&mut readwriter, &footer, cde_start_pos)?;
|
||||||
|
|
||||||
let mut files = Vec::new();
|
|
||||||
|
|
||||||
if let Err(_) = readwriter.seek(io::SeekFrom::Start(directory_start)) {
|
if let Err(_) = readwriter.seek(io::SeekFrom::Start(directory_start)) {
|
||||||
return Err(ZipError::InvalidArchive(
|
return Err(ZipError::InvalidArchive(
|
||||||
"Could not seek to start of central directory",
|
"Could not seek to start of central directory",
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
for _ in 0..number_of_files {
|
let files = (0..number_of_files)
|
||||||
let file = central_header_to_zip_file(&mut readwriter, archive_offset)?;
|
.map(|_| central_header_to_zip_file(&mut readwriter, archive_offset))
|
||||||
files.push(file);
|
.collect::<Result<Vec<_>, _>>()?;
|
||||||
}
|
|
||||||
|
|
||||||
let _ = readwriter.seek(io::SeekFrom::Start(directory_start)); // seek directory_start to overwrite it
|
let _ = readwriter.seek(io::SeekFrom::Start(directory_start)); // seek directory_start to overwrite it
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue