My favorites | Sign in
Project Logo
                
Code license: MIT License
Labels: php, inotify-tools, inotify, extension
Links:
Blogs:
Feeds:
Groups:

Very simple PHP extension for inotify-tools which provides a simple interface to inotify.

<?php
inotifytools_initialize();
$wd = inotifytools_watch_recursively('/tmp', IN_MOVE | IN_CLOSE_WRITE);
while (1){
while ($ev = inotifytools_next_event(1)) { 
  echo $ev['name']."\n"; // other field in $ev: mask wd cookie
}
sleep(1);//try write sth in /tmp dir
}
?>








Hosted by Google Code