Crates.io | binstall-tar |
lib.rs | binstall-tar |
version | 0.4.42 |
source | src |
created_at | 2022-09-10 05:51:05.450882 |
updated_at | 2024-06-07 12:53:33.833652 |
description | 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. |
homepage | https://github.com/cargo-bins/tar-rs |
repository | https://github.com/cargo-bins/tar-rs |
max_upload_size | |
id | 662280 |
size | 248,752 |
A tar archive reading/writing library for Rust.
# Cargo.toml
[dependencies]
binstall_tar = "0.4"
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);
}
}
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();
}
This project is licensed under either of
at your option.
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.