Constant inotify_sys::IN_CLOSE_NOWRITE
source · pub const IN_CLOSE_NOWRITE: u32 = 0x00000010;
Expand description
Event: Non-writable file or directory was closed
This constant can be passed to inotify_add_watch
, to register interest
in this type of event, or it can be used to check (via inotify_event
’s
mask
field) whether an event is of this type.
When monitoring a directory, this event can be triggered for both for the directory itself and the files within.
See man page for additional details.