linux

inotify如何检测文件修改

小樊
49
2025-09-02 16:57:03
栏目: 编程语言

inotify 是 Linux 系统中的一个内核子系统,用于监控文件系统事件。要使用 inotify 检测文件修改,你需要使用 Linux 提供的 inotify API。以下是一个简单的示例,展示了如何使用 inotify 监控文件修改:

  1. 首先,确保你的系统已经安装了 inotify-tools。在大多数 Linux 发行版中,可以使用以下命令安装:
sudo apt-get install inotify-tools
  1. 创建一个名为 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 <filename>\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 );
    if ( wd < 0 ) {
        perror("inotify_add_watch");
        return 1;
    }

    printf("Monitoring file: %s\n", argv[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_MODIFY ) {
                    printf("File %s modified\n", event->name );
                }
            }
            i += EVENT_SIZE + event->len;
        }
        i = 0;
    }

    // 移除监控并关闭文件描述符
    inotify_rm_watch( fd, wd );
    close(fd);

    return 0;
}
  1. 编译 C 文件:
gcc inotify_example.c -o inotify_example
  1. 运行编译后的程序,监控指定文件的修改:
./inotify_example <filename>

<filename> 替换为你要监控的文件名。程序将输出文件的修改事件。

注意:这个示例仅用于演示目的,实际应用中可能需要处理更多的错误情况和边缘情况。

0
看了该问题的人还看了