feat: add write-large-file
example to show how to write huge files.
This requires DEFLATE64 support, which is seemingly present in the default rust backend.
This commit is contained in:
parent
21a20584bc
commit
4f4f76c9a2
1 changed files with 36 additions and 0 deletions
36
examples/write-large-file.rs
Normal file
36
examples/write-large-file.rs
Normal file
|
@ -0,0 +1,36 @@
|
|||
//! Write a huge file with lots of zeros, that should compress perfectly.
|
||||
|
||||
use std::io::Write;
|
||||
|
||||
use zip::write::FileOptions;
|
||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
let args: Vec<_> = std::env::args().collect();
|
||||
if args.len() < 2 {
|
||||
return Err(format!("Usage: {} <filename>", args[0]).into());
|
||||
}
|
||||
|
||||
let filename = &*args[1];
|
||||
doit(filename)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn doit(filename: &str) -> zip::result::ZipResult<()> {
|
||||
let file = std::fs::File::create(filename)?;
|
||||
let mut zip = zip::ZipWriter::new(file);
|
||||
|
||||
let options = FileOptions::default()
|
||||
.compression_method(zip::CompressionMethod::Deflated)
|
||||
// files over u32::MAX require this flag set.
|
||||
.large_file(true)
|
||||
.unix_permissions(0o755);
|
||||
zip.start_file("huge-file-of-zeroes", options)?;
|
||||
let content: Vec<_> = std::iter::repeat(0_u8).take(65 * 1024).collect();
|
||||
let mut bytes_written = 0_u64;
|
||||
while bytes_written < u32::MAX as u64 {
|
||||
zip.write_all(&content)?;
|
||||
bytes_written += content.len() as u64;
|
||||
}
|
||||
zip.finish()?;
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue