使用inotify時遇到一些問題。 我使用inotify來監視文件的更改。這裏是我的代碼:inotify當文件被刪除並再次創建時停止監視文件
int fd = inotify_init();
int wd = inotify_add_watch(fd, "/root/temp", IN_ALL_EVENTS);
int bufSize = 1000;
char *buf = new char[bufSize];
memset(buf, 0, sizeof(buf));
int nBytes = read(fd, buf, bufSize - 1);
cout << nBytes << " bytes read" << endl;
inotify_event *eventPtr = (inotify_event *)buf;
int offset = 0;
while (offset < nBytes)
{
cout << eventPtr->mask << endl;
offset += sizeof(inotify_event) + eventPtr->len;
eventPtr = (inotify_event *)(buf + offset);
}
delete []buf;
如果我刪除「/根/ TEMP」和重新創建這樣的一個文件,這個文件進行任何更改不會被inotify的監控,任何人怎麼是這樣嗎?謝謝。
成