fix output format style for examples/extract.rs

This commit is contained in:
biluohc 2017-10-28 23:48:02 +08:00
parent 36146f0f2a
commit 09f728e71a

View file

@ -30,7 +30,7 @@ fn real_main() -> i32 {
} }
if (&*file.name()).ends_with('/') { if (&*file.name()).ends_with('/') {
println!("Dir {} extracted to \"{}\"", i, outpath.as_path().display()); println!("File {} extracted to \"{}\"", i, outpath.as_path().display());
fs::create_dir_all(&outpath).unwrap(); fs::create_dir_all(&outpath).unwrap();
} else { } else {
println!("File {} extracted to \"{}\" ({} bytes)", i, outpath.as_path().display(), file.size()); println!("File {} extracted to \"{}\" ({} bytes)", i, outpath.as_path().display(), file.size());