本文簡要介紹rust語言中 std::fs::DirEntry.file_type
的用法。
用法
pub fn file_type(&self) -> Result<FileType>
返回此條目指向的文件的文件類型。
如果此入口指向符號鏈接,則此函數將不會遍曆符號鏈接。
特定於平台的行為
在 Windows 和大多數 Unix 平台上,此函數是免費的(不需要額外的係統調用),但某些 Unix 平台可能需要等效調用 symlink_metadata
來了解目標文件類型。
例子
use std::fs;
if let Ok(entries) = fs::read_dir(".") {
for entry in entries {
if let Ok(entry) = entry {
// Here, `entry` is a `DirEntry`.
if let Ok(file_type) = entry.file_type() {
// Now let's show our entry's file type!
println!("{:?}: {:?}", entry.path(), file_type);
} else {
println!("Couldn't get file type for {:?}", entry.path());
}
}
}
}
相關用法
- Rust DirEntry.file_name用法及代碼示例
- Rust DirEntry.metadata用法及代碼示例
- Rust DirEntry.path用法及代碼示例
- Rust DirEntryExt2.file_name_ref用法及代碼示例
- Rust DirEntryExt.ino用法及代碼示例
- Rust DirBuilder.new用法及代碼示例
- Rust DirBuilder.recursive用法及代碼示例
- Rust DirBuilder.create用法及代碼示例
- Rust DirBuilderExt.mode用法及代碼示例
- Rust Div用法及代碼示例
- Rust DivAssign用法及代碼示例
- Rust Difference用法及代碼示例
- Rust DivAssign.div_assign用法及代碼示例
- Rust DispatchFromDyn用法及代碼示例
- Rust Div.div用法及代碼示例
- Rust Display用法及代碼示例
- Rust Display.fmt用法及代碼示例
- Rust Duration.as_micros用法及代碼示例
- Rust Duration.subsec_nanos用法及代碼示例
- Rust DebugList.entries用法及代碼示例
- Rust Duration.checked_add用法及代碼示例
- Rust DoubleEndedIterator.try_rfold用法及代碼示例
- Rust Drain.as_slice用法及代碼示例
- Rust Duration.new用法及代碼示例
- Rust DerefMut用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::fs::DirEntry.file_type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。