本文簡要介紹rust語言中 std::fs::Metadata.created
的用法。
用法
pub fn created(&self) -> Result<SystemTime>
返回此元數據中列出的創建時間。
返回值對應Linux內核4.11以後statx
的btime
字段,其他Unix平台stat
的birthtime
字段,Windows平台ftCreationTime
字段。
錯誤
此字段可能並非在所有平台上都可用,並且將在不可用的平台或文件係統上返回 Err
。
例子
use std::fs;
fn main() -> std::io::Result<()> {
let metadata = fs::metadata("foo.txt")?;
if let Ok(time) = metadata.created() {
println!("{:?}", time);
} else {
println!("Not supported on this platform or filesystem");
}
Ok(())
}
相關用法
- Rust Metadata.is_file用法及代碼示例
- Rust Metadata.is_symlink用法及代碼示例
- Rust Metadata.modified用法及代碼示例
- Rust Metadata.accessed用法及代碼示例
- Rust Metadata.file_type用法及代碼示例
- Rust Metadata.permissions用法及代碼示例
- Rust Metadata.len用法及代碼示例
- Rust Metadata.is_dir用法及代碼示例
- 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.creation_time用法及代碼示例
- 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-lang.org大神的英文原創作品 std::fs::Metadata.created。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。