15 unstable releases (7 breaking)

0.8.1 Jul 26, 2024
0.7.0 May 31, 2024
0.6.2 Sep 3, 2023
0.6.1 Jul 29, 2021
0.4.0 Mar 25, 2020

#26 in Compression

Download history 3554/week @ 2024-08-15 3762/week @ 2024-08-22 3721/week @ 2024-08-29 3730/week @ 2024-09-05 3381/week @ 2024-09-12 3560/week @ 2024-09-19 3632/week @ 2024-09-26 4675/week @ 2024-10-03 3575/week @ 2024-10-10 4360/week @ 2024-10-17 3910/week @ 2024-10-24 3765/week @ 2024-10-31 3822/week @ 2024-11-07 4066/week @ 2024-11-14 3609/week @ 2024-11-21 2829/week @ 2024-11-28

14,862 downloads per month
Used in 40 crates (28 directly)

MIT license

18KB
297 lines

zip-extensions-rs

Rust Crates.io

An extension crate for https://github.com/zip-rs/zip2 that provides high-level functions for common ZIP tasks, such as extracting archives to a directory.

Usage examples

Configure dependencies

Add the following dependencies to the Cargo.toml file.

[dependencies]
zip = "2.1.1"
zip-extensions = "0.8.0"

See https://github.com/zip-rs/zip2 fur further information about zip dependencies.

Extracting an archive to a directory

The ZipArchiveExtensions trait provides the extract method that can be used to unzip an archive to a directory.

use std::fs::File;
use zip_extensions::read::ZipArchiveExtensions;
...

let file = File::create(archive_file)?;
let mut archive = zip::ZipArchive::new(file)?;
archive.extract(&target_path)?;

Alternatively, the zip_extract helper can be used.

use zip_extensions::*;
...
let archive_file: PathBuf = ...
let target_dir: PathBuf = ...
zip_extract(&archive_file, &target_dir)?;

Extracting an archive entry into memory

The zip_extract_file_to_memory method can be used to extract entries ad-hoc into memory.

use zip_extensions::*;

let archive_file = PathBuf::from_str(r#"Baloo_Da_2.zip"#)?;
let entry_path = PathBuf::from_str("BalooDa2-Medium.ttf")?;

let mut buffer : Vec<u8> = vec![];
match zip_extract_file_to_memory(&archive_file, &entry_path, &mut buffer) {
    Ok(()) => { println!("Extracted {} bytes from archive.", buffer.len()) },
    Err(e) => { println!("The entry does not exist.") }
};

Creating an archive from a directory

The ZipWriterExtensions trait provides the create_from_directory and create_from_directory_with_options methods that can be used to add an entire directory hierarchy to an archive.

use zip::ZipWriter;
use zip_extensions::write::ZipWriterExtensions;
...

let file = File::create(archive_file)?;
let zip = ZipWriter::new(file);
zip.create_from_directory(&source_path)?;

Alternatively, the zip_create_from_directory helper can be used.

use zip_extensions::*;
...
let archive_file: PathBuf = ...
let source_dir: PathBuf = ...
zip_create_from_directory(&archive_file, &source_dir)?;

Dependencies

~1.6–3.5MB
~68K SLoC