gpt4 book ai didi

c++ - inotify_add_watch 失败,没有这样的文件或目录

转载 作者:行者123 更新时间:2023-12-04 17:48:32 29 4
gpt4 key购买 nike

我正在尝试在我的 c/c++ 程序中观察文件的创建。我正在尝试为此目的使用 inotify。但是,我收到了 no such file or directory当我制作 inotify_add_watch()调用我的代码。我在 Ubuntu 16.04 机器上运行我的程序。该机器正在 EC2 云中运行。有人能告诉我收到 no such file or directory error 的可能原因吗? ?

根据 inotify_add_watch 的手册页,这甚至不是可能的错误代码之一。我已确保我对要监视的文件等具有适当的读取权限。

这是我的测试程序:

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/inotify.h>
#include <limits.h>

#define MAX_EVENTS 1024
#define LEN_NAME 16
#define EVENT_SIZE (sizeof (struct inotify_event))
#define BUF_LEN (MAX_EVENTS * (EVENT_SIZE + LEN_NAME))

int
main(int argc, char **argv)
{
int length, i = 0, wd;
int fd;
char buffer[BUF_LEN];

/* Initialize Inotify*/
fd = inotify_init();
if (fd < 0) {
perror("Couldn't initialize inotify");
}

/* add watch to starting directory */
wd = inotify_add_watch(fd, argv[1], IN_CREATE | IN_MODIFY | IN_DELETE);

if (wd == -1) {
printf("Couldn't add watch to %s. errno=%d\n", argv[1], errno);
return -1;
} else {
printf("Watching:: %s\n",argv[1]);
}

/* do it forever*/
while (1) {
i = 0;
length = read(fd, buffer, BUF_LEN);

if (length < 0) {
perror("read");
}

while (i < length) {
struct inotify_event *event = (struct inotify_event *) &buffer[i];
if (event->len) {
if (event->mask & IN_CREATE) {
printf("Create event. file=%s, wf=%d\n", event->name, event->wd);
}

if (event->mask & IN_MODIFY) {
printf("Modify event. file=%s, wf=%d\n", event->name, event->wd);
}

if (event->mask & IN_DELETE) {
printf("Delete event. file=%s, wf=%d\n", event->name, event->wd);
}

i += EVENT_SIZE + event->len;
}
}
}

/* Clean up*/
inotify_rm_watch(fd, wd);
close(fd);

return 0;
}

最佳答案

如果你想监控文件/目录的创建,你应该注意父目录,因为当你调用inotify_add_watch()时新的文件/目录不存在。 .
然后,当您的监视目录中创建任何文件/目录时,您将获得一个事件,并且新的文件/目录名称将在 event->name 中。

关于c++ - inotify_add_watch 失败,没有这样的文件或目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47005198/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com