本文简要介绍rust语言中 std::os::windows::fs::MetadataExt.creation_time
的用法。
用法
fn creation_time(&self) -> u64
返回此元数据的ftCreationTime
字段的值。
返回的 64 位值等效于 FILETIME
结构,它表示自 1601 年 1 月 1 日 (UTC) 以来的 100 纳秒间隔数。该结构会自动转换为 u64
值,因为这是推荐的使用方式。
如果底层文件系统不支持创建时间,则返回值为 0。
例子
use std::io;
use std::fs;
use std::os::windows::prelude::*;
fn main() -> io::Result<()> {
let metadata = fs::metadata("foo.txt")?;
let creation_time = metadata.creation_time();
Ok(())
}
相关用法
- Rust MetadataExt.ctime_nsec用法及代码示例
- Rust MetadataExt.ctime用法及代码示例
- Rust MetadataExt.st_ctime_nsec用法及代码示例
- Rust MetadataExt.mtime_nsec用法及代码示例
- Rust MetadataExt.nlink用法及代码示例
- Rust MetadataExt.st_atime用法及代码示例
- Rust MetadataExt.uid用法及代码示例
- Rust MetadataExt.st_ino用法及代码示例
- Rust MetadataExt.st_mode用法及代码示例
- Rust MetadataExt.st_rdev用法及代码示例
- Rust MetadataExt.blocks用法及代码示例
- Rust MetadataExt.file_attributes用法及代码示例
- Rust MetadataExt.mode用法及代码示例
- Rust MetadataExt.st_dev用法及代码示例
- Rust MetadataExt.st_ctime用法及代码示例
- Rust MetadataExt.st_blocks用法及代码示例
- Rust MetadataExt.last_access_time用法及代码示例
- Rust MetadataExt.file_size用法及代码示例
- Rust MetadataExt.size用法及代码示例
- Rust MetadataExt.blksize用法及代码示例
- Rust MetadataExt.last_write_time用法及代码示例
- Rust MetadataExt.ino用法及代码示例
- Rust MetadataExt.mtime用法及代码示例
- Rust MetadataExt.as_raw_stat用法及代码示例
- Rust MetadataExt.st_blksize用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::os::windows::fs::MetadataExt.creation_time。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。