tape 0.4.1

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

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.

Contributing

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.