zip-extensions-rs
An extension crate for https://github.com/mvdnes/zip-rs 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.
[]
= "0.5.5"
= "0.1.1"
See https://github.com/mvdnes/zip-rs 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 File;
use ZipArchiveExtensions;
let file = open.unwrap;
let mut archive = new.unwrap;
archive.extract.unwrap;