inotify 是 Linux 系统中用于监控文件系统事件的一种机制。它能够实时地检测到文件或目录的变化,如创建、删除、修改等。要使用 inotify 检测目录变化,你需要使用 Linux 提供的 inotify API。
以下是一个简单的示例,展示了如何使用 inotify 监控一个目录的变化:
libinotify-dev 库。在基于 Debian 的系统上,可以使用以下命令安装:sudo apt-get install libinotify-dev
inotify_example.c 的 C 语言源文件,并添加以下代码:#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/inotify.h>
#include <unistd.h>
#define EVENT_SIZE ( sizeof (struct inotify_event) )
#define BUF_LEN ( 1024 * ( EVENT_SIZE + 16 ) )
int main(int argc, char **argv)
{
int length, i = 0;
int fd;
int wd;
char buffer[BUF_LEN];
// 检查命令行参数
if (argc != 2) {
printf("Usage: %s <directory_to_monitor>\n", argv[0]);
return 1;
}
// 初始化 inotify
fd = inotify_init();
if (fd < 0) {
perror("inotify_init");
return 1;
}
// 添加要监控的目录
wd = inotify_add_watch(fd, argv[1], IN_MODIFY | IN_CREATE | IN_DELETE);
if (wd < 0) {
perror("inotify_add_watch");
return 1;
}
// 读取 inotify 事件
while (1) {
length = read(fd, buffer, BUF_LEN);
if (length < 0) {
perror("read");
return 1;
}
while (i < length) {
struct inotify_event *event = (struct inotify_event *) &buffer[i];
if (event->len) {
if (event->mask & IN_CREATE) {
printf("File %s created.\n", event->name);
} else if (event->mask & IN_DELETE) {
printf("File %s deleted.\n", event->name);
} else if (event->mask & IN_MODIFY) {
printf("File %s modified.\n", event->name);
}
}
i += EVENT_SIZE + event->len;
}
i = 0;
}
// 移除监控并关闭文件描述符
inotify_rm_watch(fd, wd);
close(fd);
return 0;
}
gcc inotify_example.c -o inotify_example
./inotify_example /path/to/directory
这个示例程序会监控指定的目录,并在文件发生变化时输出相应的信息。你可以根据需要修改代码以处理其他类型的事件或执行其他操作。