|
NAMEFilesys::Notify::Simple - Simple and dumb file system watcherSYNOPSISuse Filesys::Notify::Simple; my $watcher = Filesys::Notify::Simple->new([ "." ]); $watcher->wait(sub { for my $event (@_) { $event->{path} # full path of the file updated } }); DESCRIPTIONFilesys::Notify::Simple is a simple but unified interface to get notifications of changes to a given filesystem path. It utilizes inotify2 on Linux, fsevents on OS X, kqueue on FreeBSD and FindFirstChangeNotification on Windows if they're installed, with a fallback to the full directory scan if they're not available.There are some limitations in this module. If you don't like it, use File::ChangeNotify.
In return, this module doesn't depend on any non-core modules. Platform specific optimizations with Linux::Inotify2, Mac::FSEvents, Filesys::Notify::KQueue and Win32::ChangeNotify are truely optional. NOTE: Using Win32::ChangeNotify may put additional limitations.
AUTHORTatsuhiko Miyagawa <miyagawa@bulknews.net>LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.SEE ALSOFile::ChangeNotify Mac::FSEvents Linux::Inotify2 Filesys::Notify::KQueue Win32::ChangeNotify
Visit the GSP FreeBSD Man Page Interface. |