75 个版本
0.4.41 | 2024年6月4日 |
---|---|
0.4.40 | 2023年8月7日 |
0.4.39 | 2023年7月13日 |
0.4.38 | 2021年12月14日 |
0.1.0 | 2014年11月27日 |
#2 in 压缩
2,459,956 每月下载量
用于 2,567 个 Crates (910 直接)
155KB
3K SLoC
tar-rs
Rust 的 tar 归档读写库。
# Cargo.toml
[dependencies]
tar = "0.4"
读取归档
extern crate tar;
use std::io::prelude::*;
use std::fs::File;
use 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 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();
}
许可证
此项目受以下任何一个许可证的约束
- Apache 许可证 2.0 版 (LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
由您选择。
贡献
除非您明确声明,否则您提交给此项目的任何有意贡献,根据 Apache-2.0 许可证定义,将按照上述方式双重许可,不附加任何额外条款或条件。
依赖
~1.5–10MB
~111K SLoC