本文简要介绍rust语言中 std::fs::DirEntry.path
的用法。
用法
pub fn path(&self) -> PathBuf
返回此条目表示的文件的完整路径。
完整路径是通过将read_dir
的原始路径与该条目的文件名连接起来创建的。
例子
use std::fs;
fn main() -> std::io::Result<()> {
for entry in fs::read_dir(".")? {
let dir = entry?;
println!("{:?}", dir.path());
}
Ok(())
}
这打印输出如下:
"./whatever.txt"
"./foo.html"
"./hello_world.rs"
当然,确切的文本取决于您在 .
中有哪些文件。
相关用法
- Rust DirEntry.metadata用法及代码示例
- Rust DirEntry.file_type用法及代码示例
- Rust DirEntry.file_name用法及代码示例
- 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.path。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。