10 个版本
0.3.1 | 2020年7月10日 |
---|---|
0.3.0 | 2020年5月21日 |
0.2.2 |
|
0.2.0 | 2017年1月8日 |
0.0.1 | 2015年7月28日 |
#413 in 文件系统
19,253 每月下载量
用于 5 个 Crates (3 直接使用)
9KB
106 行
utime
Rust 中缺少的 utime 函数。
Rust 的标准库没有提供设置文件 atime/mtime 的稳定方法。此 crate 提供了更改文件最后修改和访问时间的稳定方法。
[dependencies]
utime = "0.2"
use std::fs::File;
use utime::*;
File::create("target/testdummy").unwrap();
set_file_times("target/testdummy", 1000000, 1000000000).unwrap();
let (accessed, modified) = get_file_times("target/testdummy").unwrap();
assert_eq!(accessed, 1000000);
assert_eq!(modified, 1000000000);
utime 主要在 MIT 许可证 和 Apache 许可证(版本 2.0) 的条款下分发。有关详细信息,请参阅 COPYRIGHT。
依赖项
~215KB