xpepermint / async-fsw

Cross-platform asynchronous filesystem notification library for Rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cross-platform asynchronous filesystem notification library for Rust.

This library allows for asynchronous observation of filesystem changes. This project is built on top of async-std an notify projects.

Example

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);
}

About

Cross-platform asynchronous filesystem notification library for Rust.

License:MIT License


Languages

Language:Rust 100.0%