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

Posted

技术标签:

【中文标题】inotify_add_watch 失败,没有这样的文件或目录【英文标题】:inotify_add_watch fails with no such file or directory 【发布时间】:2017-10-29 21:01:38 【问题描述】:

我正在尝试在我的 c/c++ 程序中查看文件的创建。我正在尝试为此目的使用 inotify。但是,当我在代码中调用inotify_add_watch() 时,我得到了no such file or directory。我在 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;

【问题讨论】:

“这甚至不是可能的错误代码之一”再次检查...ENOENT 我的错,忽略了这一点。但是,问题仍然存在。不管我给出什么路径,我都会得到同样的错误。即使是像“a.out a.txt”这样的简单测试也会出现这种错误。 路径是否存在? 是的。正如我所提到的,即使是像“a.out my.txt”这样我正在监视的文件与程序位于同一目录中的简单测试,我也会收到此错误。 touch this; ./a.out this 也失败了呢? 【参考方案1】:

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

【讨论】:

以上是关于inotify_add_watch 失败,没有这样的文件或目录的主要内容,如果未能解决你的问题,请参考以下文章

推送到 bitbucket 时出现错误“inotify_add_watch”

QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: 设备上没有空间

inotify,inotify_add_watch() 监控多个目录,c++

inotify_add_watch 是不是按升序返回监视描述符?

为啥需要使用 inotify_add_watch() 调用 read() 两次

inotify_add_watch 相对于 O_PATH dirfd