I have created that little snippet to try and understand how inotify works. My test is very simple: I run the code, then open /home/qdii/test with any editor, modify it and save the file. Nothing happens. I modify the file again and save, and “event received” is displayed. From that moment, modifying the file again won’t trigger anything no more.
I would expect inotify to issue “event received” every time the file is modified. What did I do wrong?
#include <errno.h>
#include <sys/inotify.h>
#include <fcntl.h>
#include <assert.h>
#include <unistd.h>
#include <iostream>
int main()
{
const int fd = inotify_init();
inotify_add_watch(fd, "/home/qdii/test", IN_MODIFY);
while (true)
{
const size_t buf_size = sizeof(struct inotify_event);
char buf[buf_size];
if (read(fd, buf, buf_size) >= 0)
std::cout << "event received" << std::endl;
sleep(1);
}
return 0;
}