[][src]Constant inotify_sys::IN_DELETE

pub const IN_DELETE: u32 = 0x00000200;

Event: File or directory in watched directory was deleted

This may also include hard links, symlinks, and UNIX sockets.

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 will be triggered only for files within the directory.

See man page for additional details.