3 个版本 (1 个稳定版)
使用旧的 Rust 2015
1.0.0 | 2017 年 12 月 30 日 |
---|---|
0.0.2 | 2016 年 12 月 31 日 |
0.0.1 | 2016 年 12 月 30 日 |
1452 在 文件系统 中
109 每月下载次数
5KB
69 行
mkstemp.rs
libc 中的 mkstemp 函数的安全包装
使用示例
use std::io::Write;
extern crate mkstemp;
pub fn main() {
// delete automatically when it goes out of scope
let mut temp_file = mkstemp::TempFile::new("/tmp/testXXXXXX", true).unwrap();
temp_file.write("test content".as_bytes()).unwrap();
}
许可证
受 MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT) 保护
lib.rs
:
libc 中的 mkstemp 函数的安全包装
使用示例
use std::io::Write;
extern crate mkstemp;
pub fn main() {
// delete automatically when it goes out of scope
let mut temp_file = mkstemp::TempFile::new("/tmp/testXXXXXX", true).unwrap();
temp_file.write("test content".as_bytes()).unwrap();
}
依赖项
~43KB