gpt4 book ai didi

c - 如何打印 C 目录中新创建的文件的名称?

转载 作者:行者123 更新时间:2023-11-30 14:41:21 25 4
gpt4 key购买 nike

此代码扫描目录中新创建的文件,但是如果“%s”应包含新文件的名称,则不会发生这种情况。

我可以想象这里写了一些不必要的代码,但是由于对 C 相当不熟悉,我很高兴它此时可以编译(并且实际上识别新文件)!

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <sys/inotify.h>

int main (int argc, char *argv[])
{
char target[FILENAME_MAX];
int result;
int fd;
int wd; /* watch descriptor */
const int event_size = sizeof(struct inotify_event);
const int buf_len = 1024 * (event_size + FILENAME_MAX);

fd = inotify_init();

if (fd < 0) {
perror("inotify_init");
}

wd = inotify_add_watch(fd, "/home/joe/Documents", IN_CREATE);

while (1) {
char buff[buf_len];
int no_of_events, count = 0;

no_of_events = read (fd, buff, buf_len);

while (count < no_of_events) {
struct inotify_event *event = (struct inotify_event *)&buff[count];

if (event->len) {
if (event->mask & IN_CREATE)
if(!(event->mask & IN_ISDIR)) {
printf("The file %s has been created\n", target);
fflush(stdout);
}
}
count += event_size + event->len;
}
}

return 0;
}

最佳答案

当您收到事件时,您将打印出 target,但是 target 永远不会被修改。

创建的文件的名称存储在event->name中。这就是您想要打印的内容。

printf("The file %s has been created\n", event->name);

关于c - 如何打印 C 目录中新创建的文件的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55011006/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com