3 个版本
使用旧的 Rust 2015
0.1.2 | 2022年5月6日 |
---|---|
0.1.1 | 2018年8月3日 |
0.1.0 | 2018年8月2日 |
在 文件系统 中排名 521
每月下载量 9,006
在 21 个Crates中(16个直接使用)中使用
7KB
101 行
filepath
获取文件的文件系统路径。
为File
提供的简单扩展特质,包含一个path
方法,该方法返回文件的路径。
注意:并非所有文件都有路径。例如,在移动文件后,路径可能不正确。
操作系统支持:Linux、Mac、Windows
use std::fs::File;
use filepath::FilePath;
let mut file = File::create("foo.txt").unwrap();
println!("{:?}", file.path());
lib.rs
:
filepath
filepath
包含一个扩展特质,为std::fs::File
提供path
方法。
依赖项
~185KB