#zip-archive #zip #extract #archive

zip-extract

Archive extraction via zip-rs, automated

6 releases

0.2.1 Aug 26, 2024
0.2.0 Aug 24, 2024
0.1.3 Jan 22, 2024
0.1.2 Feb 26, 2023
0.1.0 Jun 22, 2020

#31 in Compression

Download history 4189/week @ 2024-09-21 4443/week @ 2024-09-28 4370/week @ 2024-10-05 5536/week @ 2024-10-12 4353/week @ 2024-10-19 4411/week @ 2024-10-26 4485/week @ 2024-11-02 4638/week @ 2024-11-09 4949/week @ 2024-11-16 6566/week @ 2024-11-23 7179/week @ 2024-11-30 5875/week @ 2024-12-07 5930/week @ 2024-12-14 4937/week @ 2024-12-21 6241/week @ 2024-12-28 6781/week @ 2025-01-04

24,635 downloads per month
Used in 59 crates (41 directly)

MIT license

170KB
114 lines

zip-extract

CI Crates.io Docs.rs

zip-extract's primary goal is simple: Automate tedious zip extraction. Ever wanted to just unpack an archive somewhere? Well, here you go.

Usage

let archive: Vec<u8> = download_my_archive()?;
let target_dir = PathBuf::from("my_target_dir"); // Doesn't need to exist

// The third parameter allows you to strip away toplevel directories.
// If `archive` contained a single directory, its contents would be extracted instead.
zip_extract::extract(Cursor::new(archive), &target_dir, true)?;

Features

All features passed through to zip2.


lib.rs:

zip-extract

zip-extract's primary goal is simple: Automate tedious zip extraction. Ever wanted to just unpack an archive somewhere? Well, here you go:

Usage

See extract for details.

let archive: Vec<u8> = download_my_archive()?;
let target_dir = PathBuf::from("my_target_dir"); // Doesn't need to exist

// The third parameter allows you to strip away toplevel directories.
// If `archive` contained a single folder, that folder's contents would be extracted instead.
zip_extract::extract(Cursor::new(archive), &target_dir, true)?;

Features

All features are passed through to zip2, refer to the documentation for defaults and a list of features.

Dependencies

~7.5MB
~130K SLoC