Expand description
ZIP archive generator
Handles the bookkeeping involved in building an archive, and provides an API to edit its contents.
use std::io::Write;
use zip::write::FileOptions;
// We use a buffer here, though you'd normally use a `File`
let mut buf = [0; 65536];
let mut zip = zip::ZipWriter::new(std::io::Cursor::new(&mut buf[..]));
let options = zip::write::FileOptions::default().compression_method(zip::CompressionMethod::Stored);
zip.start_file("hello_world.txt", options)?;
zip.write(b"Hello, World!")?;
// Apply the changes you've made.
// Dropping the `ZipWriter` will have the same effect, but may silently fail
zip.finish()?;
Implementations
sourceimpl<A: Read + Write + Seek> ZipWriter<A>
impl<A: Read + Write + Seek> ZipWriter<A>
sourcepub fn new_append(readwriter: A) -> ZipResult<ZipWriter<A>>
pub fn new_append(readwriter: A) -> ZipResult<ZipWriter<A>>
Initializes the archive from an existing ZIP archive, making it ready for append.
sourceimpl<W: Write + Seek> ZipWriter<W>
impl<W: Write + Seek> ZipWriter<W>
sourcepub fn new(inner: W) -> ZipWriter<W>ⓘNotable traits for ZipWriter<W>impl<W: Write + Seek> Write for ZipWriter<W>
pub fn new(inner: W) -> ZipWriter<W>ⓘNotable traits for ZipWriter<W>impl<W: Write + Seek> Write for ZipWriter<W>
Initializes the archive.
Before writing to this object, the ZipWriter::start_file
function should be called.
sourcepub fn set_comment<S>(&mut self, comment: S) where
S: Into<String>,
pub fn set_comment<S>(&mut self, comment: S) where
S: Into<String>,
Set ZIP archive comment.
sourcepub fn set_raw_comment(&mut self, comment: Vec<u8>)
pub fn set_raw_comment(&mut self, comment: Vec<u8>)
Set ZIP archive comment.
This sets the raw bytes of the comment. The comment is typically expected to be encoded in UTF-8
sourcepub fn start_file<S>(&mut self, name: S, options: FileOptions) -> ZipResult<()> where
S: Into<String>,
pub fn start_file<S>(&mut self, name: S, options: FileOptions) -> ZipResult<()> where
S: Into<String>,
sourcepub fn start_file_from_path(
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
👎 Deprecated since 0.5.7: by stripping ..
s from the path, the meaning of paths can change. Use start_file
instead.
pub fn start_file_from_path(
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
by stripping ..
s from the path, the meaning of paths can change. Use start_file
instead.
Starts a file, taking a Path as argument.
This function ensures that the ‘/’ path separator is used. It also ignores all non ‘Normal’ Components, such as a starting ‘/’ or ‘..’ and ‘.’.
sourcepub fn start_file_aligned<S>(
&mut self,
name: S,
options: FileOptions,
align: u16
) -> Result<u64, ZipError> where
S: Into<String>,
pub fn start_file_aligned<S>(
&mut self,
name: S,
options: FileOptions,
align: u16
) -> Result<u64, ZipError> where
S: Into<String>,
sourcepub fn start_file_with_extra_data<S>(
&mut self,
name: S,
options: FileOptions
) -> ZipResult<u64> where
S: Into<String>,
pub fn start_file_with_extra_data<S>(
&mut self,
name: S,
options: FileOptions
) -> ZipResult<u64> where
S: Into<String>,
Create a file in the archive and start writing its extra data first.
Finish writing extra data and start writing file data with ZipWriter::end_extra_data
.
Optionally, distinguish local from central extra data with
ZipWriter::end_local_start_central_extra_data
.
Returns the preliminary starting offset of the file data without any extra data allowing to align the file data by calculating a pad length to be prepended as part of the extra data.
The data should be written using the io::Write
implementation on this ZipWriter
use byteorder::{LittleEndian, WriteBytesExt};
use zip::{ZipArchive, ZipWriter, result::ZipResult};
use zip::{write::FileOptions, CompressionMethod};
use std::io::{Write, Cursor};
let mut archive = Cursor::new(Vec::new());
{
let mut zip = ZipWriter::new(&mut archive);
let options = FileOptions::default()
.compression_method(CompressionMethod::Stored);
zip.start_file_with_extra_data("identical_extra_data.txt", options)?;
let extra_data = b"local and central extra data";
zip.write_u16::<LittleEndian>(0xbeef)?;
zip.write_u16::<LittleEndian>(extra_data.len() as u16)?;
zip.write_all(extra_data)?;
zip.end_extra_data()?;
zip.write_all(b"file data")?;
let data_start = zip.start_file_with_extra_data("different_extra_data.txt", options)?;
let extra_data = b"local extra data";
zip.write_u16::<LittleEndian>(0xbeef)?;
zip.write_u16::<LittleEndian>(extra_data.len() as u16)?;
zip.write_all(extra_data)?;
let data_start = data_start as usize + 4 + extra_data.len() + 4;
let align = 64;
let pad_length = (align - data_start % align) % align;
assert_eq!(pad_length, 19);
zip.write_u16::<LittleEndian>(0xdead)?;
zip.write_u16::<LittleEndian>(pad_length as u16)?;
zip.write_all(&vec![0; pad_length])?;
let data_start = zip.end_local_start_central_extra_data()?;
assert_eq!(data_start as usize % align, 0);
let extra_data = b"central extra data";
zip.write_u16::<LittleEndian>(0xbeef)?;
zip.write_u16::<LittleEndian>(extra_data.len() as u16)?;
zip.write_all(extra_data)?;
zip.end_extra_data()?;
zip.write_all(b"file data")?;
zip.finish()?;
}
let mut zip = ZipArchive::new(archive)?;
assert_eq!(&zip.by_index(0)?.extra_data()[4..], b"local and central extra data");
assert_eq!(&zip.by_index(1)?.extra_data()[4..], b"central extra data");
sourcepub fn end_local_start_central_extra_data(&mut self) -> ZipResult<u64>
pub fn end_local_start_central_extra_data(&mut self) -> ZipResult<u64>
End local and start central extra data. Requires ZipWriter::start_file_with_extra_data
.
Returns the final starting offset of the file data.
sourcepub fn end_extra_data(&mut self) -> ZipResult<u64>
pub fn end_extra_data(&mut self) -> ZipResult<u64>
End extra data and start file data. Requires ZipWriter::start_file_with_extra_data
.
Returns the final starting offset of the file data.
sourcepub fn raw_copy_file_rename<S>(
&mut self,
file: ZipFile<'_>,
name: S
) -> ZipResult<()> where
S: Into<String>,
pub fn raw_copy_file_rename<S>(
&mut self,
file: ZipFile<'_>,
name: S
) -> ZipResult<()> where
S: Into<String>,
Add a new file using the already compressed data from a ZIP file being read and renames it, this
allows faster copies of the ZipFile
since there is no need to decompress and compress it again.
Any ZipFile
metadata is copied and not checked, for example the file CRC.
use std::fs::File;
use std::io::{Read, Seek, Write};
use zip::{ZipArchive, ZipWriter};
fn copy_rename<R, W>(
src: &mut ZipArchive<R>,
dst: &mut ZipWriter<W>,
) -> zip::result::ZipResult<()>
where
R: Read + Seek,
W: Write + Seek,
{
// Retrieve file entry by name
let file = src.by_name("src_file.txt")?;
// Copy and rename the previously obtained file entry to the destination zip archive
dst.raw_copy_file_rename(file, "new_name.txt")?;
Ok(())
}
sourcepub fn raw_copy_file(&mut self, file: ZipFile<'_>) -> ZipResult<()>
pub fn raw_copy_file(&mut self, file: ZipFile<'_>) -> ZipResult<()>
Add a new file using the already compressed data from a ZIP file being read, this allows faster
copies of the ZipFile
since there is no need to decompress and compress it again. Any ZipFile
metadata is copied and not checked, for example the file CRC.
use std::fs::File;
use std::io::{Read, Seek, Write};
use zip::{ZipArchive, ZipWriter};
fn copy<R, W>(src: &mut ZipArchive<R>, dst: &mut ZipWriter<W>) -> zip::result::ZipResult<()>
where
R: Read + Seek,
W: Write + Seek,
{
// Retrieve file entry by name
let file = src.by_name("src_file.txt")?;
// Copy the previously obtained file entry to the destination zip archive
dst.raw_copy_file(file)?;
Ok(())
}
sourcepub fn add_directory<S>(&mut self, name: S, options: FileOptions) -> ZipResult<()> where
S: Into<String>,
pub fn add_directory<S>(&mut self, name: S, options: FileOptions) -> ZipResult<()> where
S: Into<String>,
Add a directory entry.
You can’t write data to the file afterwards.
sourcepub fn add_directory_from_path(
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
👎 Deprecated since 0.5.7: by stripping ..
s from the path, the meaning of paths can change. Use add_directory
instead.
pub fn add_directory_from_path(
&mut self,
path: &Path,
options: FileOptions
) -> ZipResult<()>
by stripping ..
s from the path, the meaning of paths can change. Use add_directory
instead.
Add a directory entry, taking a Path as argument.
This function ensures that the ‘/’ path seperator is used. It also ignores all non ‘Normal’ Components, such as a starting ‘/’ or ‘..’ and ‘.’.
Trait Implementations
sourceimpl<W: Write + Seek> Write for ZipWriter<W>
impl<W: Write + Seek> Write for ZipWriter<W>
sourcefn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcefn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)Determines if this Write
r has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
sourcefn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations
impl<W> RefUnwindSafe for ZipWriter<W> where
W: RefUnwindSafe,
impl<W> Send for ZipWriter<W> where
W: Send,
impl<W> Sync for ZipWriter<W> where
W: Sync,
impl<W> Unpin for ZipWriter<W> where
W: Unpin,
impl<W> UnwindSafe for ZipWriter<W> where
W: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<W> WriteBytesExt for W where
W: Write + ?Sized,
impl<W> WriteBytesExt for W where
W: Write + ?Sized,
sourcefn write_u8(&mut self, n: u8) -> Result<(), Error>
fn write_u8(&mut self, n: u8) -> Result<(), Error>
Writes an unsigned 8 bit integer to the underlying writer. Read more
sourcefn write_i8(&mut self, n: i8) -> Result<(), Error>
fn write_i8(&mut self, n: i8) -> Result<(), Error>
Writes a signed 8 bit integer to the underlying writer. Read more
sourcefn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder,
fn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 16 bit integer to the underlying writer. Read more
sourcefn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder,
fn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 16 bit integer to the underlying writer. Read more
sourcefn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
fn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 24 bit integer to the underlying writer. Read more
sourcefn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
fn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 24 bit integer to the underlying writer. Read more
sourcefn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
fn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 32 bit integer to the underlying writer. Read more
sourcefn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
fn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 32 bit integer to the underlying writer. Read more
sourcefn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
fn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 48 bit integer to the underlying writer. Read more
sourcefn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
fn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 48 bit integer to the underlying writer. Read more
sourcefn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
fn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 64 bit integer to the underlying writer. Read more
sourcefn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
fn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 64 bit integer to the underlying writer. Read more
sourcefn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder,
fn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 128 bit integer to the underlying writer.
sourcefn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder,
fn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 128 bit integer to the underlying writer.
sourcefn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned n-bytes integer to the underlying writer. Read more
sourcefn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes a signed n-bytes integer to the underlying writer. Read more
sourcefn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned n-bytes integer to the underlying writer. Read more
sourcefn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes a signed n-bytes integer to the underlying writer. Read more