3个不稳定版本
0.2.0 | 2020年10月22日 |
---|---|
0.1.1 | 2020年10月15日 |
0.1.0 | 2020年4月24日 |
1070 在 文件系统 中排名
129 每月下载次数
在 4 个Crate中使用 (直接使用 2 个)
13KB
229 行
ofiles
一个用于确定哪个进程已打开文件用于读取/写入等的小型库。我为此项目编写了这个库,但希望它也可以在其他应用中使用。
示例
use ofiles::opath;
let mut pids = opath("/path/to/a/file").unwrap();
// Now we have a Vec of process ID's that have the `/path/to/a/file` open
for pid in pids {
println!("Process {} has {} open!", pid, "/path/to/a/file");
}
依赖
~2MB
~39K SLoC