doc(examples): Fix a bug where type SimpleFileOptions must be specified

This commit is contained in:
Chris Hennick 2024-05-02 12:58:31 -07:00
parent 8f61ff2451
commit da3bbc87d7
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -1,9 +1,11 @@
use std::{
fs::{File, OpenOptions},
io::{Read, Write},
path::{Path, PathBuf},
str::FromStr,
};
use zip;
use zip::write::SimpleFileOptions;
fn gather_files<'a, T: Into<&'a Path>>(path: T, files: &mut Vec<PathBuf>) {
let path: &Path = path.into();
@ -46,7 +48,7 @@ fn real_main() -> i32 {
for file in files {
append_zip
.start_file_from_path(file, Default::default())
.start_file(file.to_string_lossy(), SimpleFileOptions::default())
.unwrap();
let mut f = File::open(file).unwrap();