Cross-platform filesystem notification library for Rust.
This is the readme for the upcoming 5.0 release! Look at the 4.0 one instead.
(Looking for desktop notifications instead? Have a look at notify-rust or alert-after!)
- Guides and in-depth docs
- API Documentation
- Crate page
- Changelog
- Upgrading from 4.0
- Earliest supported Rust version: 1.26.1
As used by: alacritty, cargo watch, cobalt, docket, handlebars-iron, mdBook, pax, rdiff, rust-analyzer, timetrack, watchexec, xi-editor, and others. (Want to be added to this list? Open a pull request!)
[dependencies]
notify = "5.0.0"
use notify::{RecommendedWatcher, RecursiveMode, Result, watcher};
use std::time::Duration;
fn main() -> Result<()> {
// Automatically select the best implementation for your platform.
// You can also access each implementation directly e.g. INotifyWatcher.
let mut watcher = watcher(Duration::from_secs(2))?;
// Add a path to be watched. All files and directories at that path and
// below will be monitored for changes.
watcher.watch("/home/test/notify", RecursiveMode::Recursive)?;
// This is a simple loop, but you may want to use more complex logic here,
// for example to handle I/O.
for event in &watcher {
match event {
Ok(event) => println!("changed: {:?}", event.path),
Err(err) => println!("watch error: {:?}", err),
};
}
Ok(())
}
To get a channel for advanced or flexible cases, use:
let rx = watcher.channel();
loop {
match rx.recv() {
// ...
}
}
To pass in a channel manually:
let (tx, rx) = crossbeam_channel::unbounded();
let mut watcher: RecommendedWatcher = Watcher::with_channel(tx, Duration::from_secs(2))?;
for event in rx.iter() {
// ...
}
By default, Notify issues generic events that carry little additional information beyond what path was affected. On some platforms, more is available; stay aware though that how exactly that manifests varies. To enable precise events, use:
use notify::Config;
watcher.configure(Config::PreciseEvents(true));
Sometimes you want to respond to some events straight away, but not give up the advantages of debouncing. Notice events appear once immediately when the occur during a debouncing period, and then a second time as usual at the end of the debouncing period:
use notify::Config;
watcher.configure(Config::NoticeEvents(true));
Sometimes frequent writes may be missed or not noticed often enough. Ongoing write events can be enabled to emit more events even while debouncing:
use notify::Config;
watcher.configure(Config::OngoingEvents(Some(Duration::from_millis(500))));
To receive events as they are emitted, without debouncing at all:
let mut watcher = immediate_watcher()?;
With a channel:
let (tx, rx) = unbounded();
let mut watcher: RecommendedWatcher = Watcher::immediate_with_channel(tx)?;
Events can be serialisable via serde. To enable the feature:
notify = { version = "5.0.0", features = ["serde"] }
- Linux / Android: inotify
- macOS: FSEvents
- Windows: ReadDirectoryChangesW
- All platforms: polling
Due to the inner security model of FSEvents (see FileSystemEventSecurity), some event cannot be observed easily when trying to follow files that do not belong to you. In this case, reverting to the pollwatcher can fix the issue, with a slight performance cost.
While this current version continues to be developed and maintained, a next
generation design of the library lives in the
next
branch. There is no solid
ETA, beyond that most of it will not be released before async
/await
is
stabilised in Rust. For an overview and background, see this draft
announce.
Instead of one large release, though, it is much more likely that smaller
components of the design, once they have gone through revising and maturing in
the next
branch, will be incorporated in the main
branch. The first large
piece, a new event classification system, landed in 5.0.
Do be aware of the licensing difference. Notify is so far under CC0. The
next
branch is instead under the Artistic License 2.0. Pieces of
the next
branch brought to main
are dual-licensed under CC0, but the eventual
plan is to be entirely Artistic License 2.0 code. The formal license change
will incur a major version bump.
Inspired by Go's fsnotify and Node.js's Chokidar, born out of need for cargo watch, and general frustration at the non-existence of C/Rust cross-platform notify libraries.
Written by Félix Saparelli and awesome contributors.