其他分享
首页 > 其他分享> > 仅监视新文件的目录

仅监视新文件的目录

作者:互联网

我想从C应用程序监视目录中的新文件.但是,我对修改过的文件不感兴趣,只对新文件感兴趣.目前我正在使用readdir / stat用于此目的:

while ( (ent = readdir(dir)) != NULL ) {
  strcpy(path, mon_dir);
  strcat(path, "/");
  strcat(path, ent->d_name);
  if ( stat(path, &statbuf) == -1 ) {
    printf( "Can't stat %s\n", ent->d_name );
    continue;
  }
  if ( S_ISREG(statbuf.st_mode) ) {
    if ( statbuf.st_mtime > *timestamp ) {
      tcomp = localtime( &statbuf.st_mtime );
      strftime( s_date, sizeof(s_date), "%Y%m%d %H:%M:%S", tcomp );
      printf( "%s %s was added\n", s_date, ent->d_name );
      *timestamp = statbuf.st_mtime;
    }
  }
}

知道如何在不保留文件列表的情况下检测Linux和Solaris 10上新创建的文件吗?

干杯,

马丁.

解决方法:

gamin为许多* nix提供了围绕系统相关文件通知apis的抽象,默认情况下它包含在许多Linux发行版中.

对于linux,你可以使用linux特定的inotify api.

Win32通过FindFirstChangeNotification具有类似的API

标签:c-3,linux,solaris,filesystems,monitoring
来源: https://codeday.me/bug/20191001/1839786.html