遍历“C:\Users\84297\Desktop\爬虫\data”路径中的txt文件
时间: 2023-03-29 08:04:33 浏览: 86
遍历某文件夹下的 .txt 文件
4星 · 用户满意度95%
你可以使用以下代码来遍历指定路径中的txt文件:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
int main() {
DIR *dir;
struct dirent *ent;
char *path = "C:\\Users\\84297\\Desktop\\爬虫\\data";
if ((dir = opendir(path)) != NULL) {
while ((ent = readdir(dir)) != NULL) {
if (strstr(ent->d_name, ".txt") != NULL) {
printf("%s\n", ent->d_name);
}
}
closedir(dir);
} else {
printf("无法打开目录\n");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
阅读全文