19 个版本
0.7.0 | 2023 年 4 月 23 日 |
---|---|
0.6.4 | 2022 年 2 月 20 日 |
0.6.3 | 2016 年 11 月 1 日 |
0.6.2 | 2016 年 7 月 17 日 |
0.0.4 | 2015 年 3 月 22 日 |
646 在 文件系统
416 每月下载量
用于 14 crates
8KB
124 行
临时
该包提供了管理临时文件和文件夹的方法。
示例
use std::fs::File;
use std::io::Write;
use temporary::Folder;
// Create a temporary folder.
let folder = Folder::new("foo").unwrap();
// Do some work.
let mut file = File::create(folder.join("foo.txt")).unwrap();
file.write_all(b"Hi there!").unwrap();
// The folder and its content get removed automatically.
致谢
该包最初基于 Rust 开发者的 std::io::TempDir
,后来被移到了单独的 crate,tempdir。
贡献
非常感谢您的贡献。请随时提交问题或拉取请求。请注意,任何提交给项目的贡献都将根据LICENSE.md中给出的条款进行许可。
依赖
~7KB