#archive #tar #operations #basic

tape

The library provides basic operations with tape archives (tar)

25 releases

Uses old Rust 2015

0.5.1 Nov 4, 2016
0.4.1 Nov 7, 2015
0.4.0 Jun 20, 2015
0.1.7 Mar 26, 2015
0.0.4 Nov 27, 2014

#62 in #tar

Apache-2.0/MIT

4KB
69 lines

Tape Version Status

The library provides basic operations with tape archives (tar).

Documentation

Example

// tar -xf foo.tar -C bar
let (from, into) = ("foo.tar", "bar");
tape::open(from).unwrap().extract(into).unwrap();

Acknowledgments

The library is based on libtar written by Mark D. Roth.

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.


lib.rs:

Basic operations with tape archives (tar).

Example

let (from, into) = ("foo.tar", "bar");
tape::open(from).unwrap().extract(into).unwrap();

Dependencies

~195KB