Reputation: 693
I am using inotify to monitor changes on some files. The problem is that inotify_event event->name is empty so I cant tell which file was modified
why is event->name empty?
fd = inotify_init();
wd = inotify_add_watch (m_fd, "/tmp/myfile", IN_MODIFY | IN_CREATE | IN_DELETE);
wd1 = inotify_add_watch (m_fd, "/tmp/myfile2", IN_MODIFY | IN_CREATE | IN_DELETE);
-----
unsigned char buffer[BUFFER_SIZE];
ssize_t len = ACE_OS::read(fd, buffer, sizeof(buffer));
ssize_t i = 0;
while (i < len)
{
inotify_event *event = ( struct inotify_event * ) &buffer[ i ];
i += EVENT_SIZE + event->len;
}
Upvotes: 4
Views: 2786
Reputation: 148
From the inotify man page...
The name field is only present when an event is returned for a file inside a watched directory; it identifies the file pathname relative to the watched directory. This pathname is null-terminated, and may include further null bytes to align subsequent reads to a suitable address boundary.
Since you're just watching files, and not directories, name will always be empty.
Upvotes: 11