Filesys::Notify::KQueue - Wrap IO::KQueue for watching file system.
use Filesys::Notify::KQueue;
my $notify = Filesys::Notify::KQueue->new(
path => [qw(~/Maildir/new)],
timeout => 1000,
);
$notify->wait(sub {
my @events = @_;
foreach my $event (@events) {
## ....
}
});
Filesys::Notify::KQueue is IO::KQueue wrapper for watching file system.
This is constructor method.
- path - ArrayRef[Str]
- Watch files or directories.
- timeout - Int
- KQueue's timeout. (millisecond)
There is no file name based filter. Do it in your own code. You can get types of
events (create, modify, rename, delete).
Kenta Sato <karupa@cpan.org>
IO::KQueue Filesys::Notify::Simple AnyEvent::Filesys::Notify File::ChangeNotify
Mac::FSEvents Linux::Inotify2
This library is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.