#archive #tar #operations #basic

tape

该库提供了对磁带归档(tar)的基本操作

25 个版本

使用旧 Rust 2015

0.5.1 2016年11月4日
0.4.1 2015年11月7日
0.4.0 2015年6月20日
0.1.7 2015年3月26日
0.0.4 2014年11月27日

#730 in 压缩

Apache-2.0/MIT

4KB
69

Tape 版本 状态

该库提供了对磁带归档(tar)的基本操作。

文档

示例

// tar -xf foo.tar -C bar
let (from, into) = ("foo.tar", "bar");
tape::open(from).unwrap().extract(into).unwrap();

致谢

该库基于 Mark D. Roth 编写的 libtar

贡献

非常感谢您的贡献。请不要犹豫,打开一个 issue 或 pull request。请注意,任何提交给项目包括的贡献都将根据 LICENSE.md 中的条款进行许可。


lib.rs:

磁带归档(tar)的基本操作。

示例

let (from, into) = ("foo.tar", "bar");
tape::open(from).unwrap().extract(into).unwrap();

依赖项

~195KB