1 个不稳定版本
0.1.0 | 2020年7月22日 |
---|
#1439 in 文件系统
8KB
171 行
linux_mount_options
检测进程可访问的文件夹的文件系统、挂载点以及noatime。
要求
- 访问
/proc/mounts
- Linux 测试
- 它应该能在 *BSD 上运行。然而,尚未测试。
示例
首先,将其添加到您的 Cargo.toml
[dependencies]
linux_mount_options = "0"
在您的 main.rs
fn main() -> Result<(), Box<dyn Error>> {
let path = "/home";
let info = linux_mount_options::detect(&path)?;
println!("{}: {:?}", path, info);
Ok( () )
}
如果您使用基于 log 基础设施 的日志,您将获得带时间戳的格式化输出。
依赖项
~87KB