2 个不稳定版本

0.2.0 2020 年 5 月 23 日
0.1.0 2020 年 5 月 4 日

#28#watcher

MIT 许可证

5KB
61 代码行

适用于 Rust 的跨平台异步文件系统通知库。

此库允许异步观察文件系统变化。该项目基于 async-stdnotify 项目构建。

示例

use async_fsw::{Watcher, WatchMode};

let mut w = Watcher::new();
w.set_path("/tmp", WatchMode::Recursive);
w.observe().await;

while let Some(event) = w.incomming().recv().await {
    println!("Event: {:?}", event);
}

依赖关系

~5–18MB
~196K SLoC