本文簡要介紹rust語言中 std::fs::DirEntry.file_name
的用法。
用法
pub fn file_name(&self) -> OsString
返回此目錄條目的裸文件名,不包含任何其他前導路徑組件。
例子
use std::fs;
if let Ok(entries) = fs::read_dir(".") {
for entry in entries {
if let Ok(entry) = entry {
// Here, `entry` is a `DirEntry`.
println!("{:?}", entry.file_name());
}
}
}
相關用法
- Rust DirEntry.file_type用法及代碼示例
- 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_name。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。