25 个版本
0.11.2 | 2023年10月14日 |
---|---|
0.11.1 | 2022年12月10日 |
0.11.0 | 2022年3月4日 |
0.7.0 | 2021年12月30日 |
0.3.1 | 2020年10月18日 |
#75 在 #fs
1,838 每月下载次数
用于 8 个 crates (5 直接)
24KB
571 行
提供挂载磁盘的信息。
lib.rs
:
使用 lfs_core::read_mounts
获取 Unix 系统上所有挂载卷的信息。
// get all mount points
let options = lfs_core::ReadOptions::default();
let mut mounts = lfs_core::read_mounts(&options).unwrap();
// only keep the one with size stats
mounts.retain(|m| m.stats.is_ok());
// print them
for mount in mounts {
dbg!(mount);
}
lfs 应用程序是 lfs-core 的查看器,显示您在挂载中期望找到的信息。
依赖项
~2.6–4MB
~75K SLoC