mirror of
https://github.com/encounter/notify.git
synced 2026-03-30 11:31:42 -07:00
38 lines
1.1 KiB
Rust
38 lines
1.1 KiB
Rust
use notify::{Config, RecommendedWatcher, RecursiveMode, Watcher};
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info")).init();
|
|
|
|
let path = std::env::args()
|
|
.nth(1)
|
|
.expect("Argument 1 needs to be a path");
|
|
|
|
log::info!("Watching {path}");
|
|
|
|
if let Err(error) = watch(path) {
|
|
log::error!("Error: {error:?}");
|
|
}
|
|
}
|
|
|
|
fn watch<P: AsRef<Path>>(path: P) -> notify::Result<()> {
|
|
let (tx, rx) = std::sync::mpsc::channel();
|
|
|
|
// Automatically select the best implementation for your platform.
|
|
// You can also access each implementation directly e.g. INotifyWatcher.
|
|
let mut watcher = RecommendedWatcher::new(tx, Config::default())?;
|
|
|
|
// Add a path to be watched. All files and directories at that path and
|
|
// below will be monitored for changes.
|
|
watcher.watch(path.as_ref(), RecursiveMode::Recursive)?;
|
|
|
|
for res in rx {
|
|
match res {
|
|
Ok(event) => log::info!("Change: {event:?}"),
|
|
Err(error) => log::error!("Error: {error:?}"),
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|