INotify event structure.
Source position: linux.pp line 408
type inotify_event = record |
||
wd: cint; |
|
Watch descriptor (as returned by inotify_add_watch). |
mask: cuint32; |
|
Event mask. |
cookie: cuint32; |
|
Cookie, used to pair move events. |
len: cuint32; |
|
Length of name. |
name: AnsiChar; |
|
Filename for which a change is reported. |
end; |
inotify_event is the structure used to report changes in a directory. When reading a inotify file descriptor, one or more inotify_event records can be read from the file descriptor.
|
Read data from file descriptor. |
|
|
Read data from a file handle in a buffer. |