Eio_inotifyAn Lwt wrapper for Inotify module
val create : unit -> tcreate () returns a new inotify descriptor.
val add_watch : t -> string -> Inotify.selector list -> Inotify.watchadd_watch desc path events sets up desc to watch for events occuring to path, and returns a watch descriptor.
val rm_watch : t -> Inotify.watch -> unitrm_watch desc watch stops desc from watching watch.
val read : t -> Inotify.eventread desc waits for an event to occur at desc.
val try_read : t -> Inotify.event optiontry_read desc returns Some event if desc has queued events, or None otherwise.
val close : t -> unitclose desc frees desc.