IN_ACCESS |
File was accessed (read). |
IN_ATTRIB |
Metadata changed (permissions, timestamps, extended attributes, etc. |
IN_CLOSE_WRITE |
File opened for writing was closed. |
IN_CLOSE_NOWRITE |
File not opened for writing was closed. |
IN_CREATE |
File/directory created in watched directory. |
IN_DELETE |
File/directory deleted from watched directory. |
IN_DELETE_SELF |
Watched file/directory was itself deleted. |
IN_MODIFY |
File was modified. |
IN_MOVE_SELF |
Watched file/directory was itself moved.
|
IN_MOVED_FROM |
File moved out of watched directory. |
IN_MOVED_TO |
File moved into watched directory. |
IN_OPEN |
File was opened. |
IN_MOVE |
Equates to "IN_MOVED_FROM or IN_MOVED_TO" |
IN_CLOSE |
Equates to "IN_CLOSE_WRITE or IN_CLOSE_NOWRITE" |
IN_DONT_FOLLOW |
Don't dereferencethe file specified by a path pointed by ecx if it is a symbolic link
|
IN_MASK_ADD |
Add (OR) events to watch mask for this pathname if it already exists (instead of replacing mask) |
IN_ONESHOT |
Monitor the file specified by a path pointed by ecx for one event, then remove from watch list. |
IN_ONLYDIR |
Only watch the instance specified by a path pointed by ecx if it is a directory |