温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C++在Linux中的文件系统监控

发布时间:2024-12-19 18:33:42 来源:亿速云 阅读:78 作者:小樊 栏目:云计算

在Linux中,可以使用C++编程语言和Linux的文件系统监控API(如inotify)来实现文件系统监控

#include <iostream>
#include <string>
#include <sys/inotify.h>
#include <unistd.h>

void monitor_directory(const std::string& path) {
    int length, i = 0;
    length = sizeof(struct inotify_event);

    int fd = inotify_init();
    if (fd < 0) {
        std::cerr << "inotify_init error" << std::endl;
        return;
    }

    int wd = inotify_add_watch(fd, path.c_str(), IN_MODIFY | IN_CREATE | IN_DELETE);
    if (wd < 0) {
        std::cerr << "inotify_add_watch error" << std::endl;
        close(fd);
        return;
    }

    char buffer[1024];
    while (true) {
        length = read(fd, buffer, sizeof(buffer) - 1);
        if (length < 0) {
            std::cerr << "read error" << std::endl;
            break;
        }

        buffer[length] = '\0';
        struct inotify_event* event = (struct inotify_event*)&buffer[0];

        if (event->len) {
            if (event->mask & IN_CREATE) {
                std::cout << "File created: " << event->name << std::endl;
            } else if (event->mask & IN_DELETE) {
                std::cout << "File deleted: " << event->name << std::endl;
            } else if (event->mask & IN_MODIFY) {
                std::cout << "File modified: " << event->name << std::endl;
            }
        }
    }

    inotify_rm_watch(fd, wd);
    close(fd);
}

int main() {
    std::string path = "/path/to/monitor";
    monitor_directory(path);
    return 0;
}

这个示例代码首先使用inotify_init()函数初始化一个inotify实例,然后使用inotify_add_watch()函数添加要监控的目录。接下来,程序进入一个无限循环,使用read()函数从inotify实例中读取事件。当检测到文件创建、删除或修改时,程序会输出相应的信息。

请注意,这个示例代码仅适用于Linux系统。如果你需要在其他操作系统上实现文件系统监控,可以考虑使用跨平台的库,如Boost.Asio或libuv。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI