#tar-archive #tar #file-reader #reader-writer #encoding

binstall-tar

A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ensure that the entire contents are never required to be entirely resident in memory all at once.

2 releases

0.4.42 Jun 7, 2024
0.4.39 Sep 10, 2022

#29 in Compression

Download history 2001/week @ 2024-03-14 2653/week @ 2024-03-21 2321/week @ 2024-03-28 2050/week @ 2024-04-04 2787/week @ 2024-04-11 2121/week @ 2024-04-18 2526/week @ 2024-04-25 3201/week @ 2024-05-02 2586/week @ 2024-05-09 2810/week @ 2024-05-16 2664/week @ 2024-05-23 2769/week @ 2024-05-30 3204/week @ 2024-06-06 3493/week @ 2024-06-13 3056/week @ 2024-06-20 2337/week @ 2024-06-27

12,681 downloads per month
Used in 10 crates (3 directly)

MIT/Apache

160KB
3K SLoC

tar-rs

Documentation

A tar archive reading/writing library for Rust.

# Cargo.toml
[dependencies]
binstall_tar = "0.4"

Reading an archive

extern crate binstall_tar;

use std::io::prelude::*;
use std::fs::File;
use binstall_tar::Archive;

fn main() {
    let file = File::open("foo.tar").unwrap();
    let mut a = Archive::new(file);

    for file in a.entries().unwrap() {
        // Make sure there wasn't an I/O error
        let mut file = file.unwrap();

        // Inspect metadata about the file
        println!("{:?}", file.header().path().unwrap());
        println!("{}", file.header().size().unwrap());

        // files implement the Read trait
        let mut s = String::new();
        file.read_to_string(&mut s).unwrap();
        println!("{}", s);
    }
}

Writing an archive

extern crate binstall_tar;

use std::io::prelude::*;
use std::fs::File;
use tar::Builder;

fn main() {
    let file = File::create("foo.tar").unwrap();
    let mut a = Builder::new(file);

    a.append_path("file1.txt").unwrap();
    a.append_file("file2.txt", &mut File::open("file3.txt").unwrap()).unwrap();
}

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5–10MB
~108K SLoC