0.2.0
2020年10月22日
0.1.1
2020年10月15日
0.1.0
2020年4月24日
1070 在 文件系统 中排名
Download history • Rust 包仓库
89/week @ 2024-03-11 • Rust 包仓库
59/week @ 2024-03-18 • Rust 包仓库
36/week @ 2024-03-25 • Rust 包仓库
96/week @ 2024-04-01 • Rust 包仓库
22/week @ 2024-04-08 • Rust 包仓库
25/week @ 2024-04-15 • Rust 包仓库
23/week @ 2024-04-22 • Rust 包仓库
62/week @ 2024-04-29 • Rust 包仓库
28/week @ 2024-05-06 • Rust 包仓库
23/week @ 2024-05-13 • Rust 包仓库
30/week @ 2024-05-20 • Rust 包仓库
25/week @ 2024-05-27 • Rust 包仓库
21/week @ 2024-06-03 • Rust 包仓库
34/week @ 2024-06-10 • Rust 包仓库
34/week @ 2024-06-17 • Rust 包仓库
38/week @ 2024-06-24 • Rust 包仓库
129 每月下载次数 在 4 个Crate中使用 (直接使用 2 个)
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" ) ;
}