gpt4 book ai didi

c - 扫描目录以查找 c 中的文件

转载 作者:太空狗 更新时间:2023-10-29 14:56:38 24 4
gpt4 key购买 nike

我正在尝试在 c 中创建一个函数,它扫描我的所有路径 C:\temp (Windows) 以搜索我传递的文件(例如 test.txt),并且每次它找到一个返回步骤的路径另一个在此文件底部写入内容的功能。我设法完成了写入文件的功能,但不知道如何扫描文件夹并传递找到的文件的地址。

最佳答案

#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>
#include <stdlib.h>
void printdir(char *dir, int depth)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
if((dp = opendir(dir)) == NULL) {
fprintf(stderr,"cannot open directory: %s\n", dir);
return;
}
chdir(dir);
while((entry = readdir(dp)) != NULL) {
lstat(entry->d_name,&statbuf);
if(S_ISDIR(statbuf.st_mode)) {
/* Found a directory, but ignore . and .. */
if(strcmp(".",entry->d_name) == 0 ||
strcmp("..",entry->d_name) == 0)
continue;
printf("%*s%s/\n",depth,"",entry->d_name);
/* Recurse at a new indent level */
printdir(entry->d_name,depth+4);
}
else printf("%*s%s\n",depth,"",entry->d_name);
}
chdir("..");
closedir(dp);
}

int main()
{
printf("Directory scan of /home:\n");
printdir("/home",0);
printf("done.\n");
exit(0);
}

关于c - 扫描目录以查找 c 中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8149569/

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