tape 0.1.4

The library provides basic operations with tape archives (tar).
docs.rs failed to build tape-0.1.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: tape-0.5.1

Tape Build Status

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

Documentation

Example

In Cargo.toml:

[dependencies]
tape = "0.1"

In main.rs:

extern crate tape;

fn main() {
    // tar -xf foo.tar -C bar
    let archive = tape::open(&Path::new("foo.tar")).unwrap();
    archive.extract(&Path::new("bar"));
}

Acknowledgments

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

Contributing

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