C和c++批量遍历读取多个文件夹内文件,要代码注释
时间: 2024-02-04 08:03:06 浏览: 274
好的,以下是使用C++语言实现遍历读取多个文件夹内文件的代码,注释已经加上:
```cpp
#include <iostream> // 包含头文件
#include <fstream>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
#include <cstring>
#include <string>
using namespace std;
void traverseFolders(string path) { // 定义遍历文件夹函数
DIR *dir;
struct dirent *ent;
struct stat st;
if ((dir = opendir(path.c_str())) == NULL) { // 打开文件夹
return;
}
while ((ent = readdir(dir)) != NULL) { // 读取文件夹内容
string file_name = ent->d_name; // 获取文件名
string full_file_name = path + "/" + file_name; // 获取文件完整路径
if (file_name[0] == '.') // 跳过隐藏文件
continue;
if (stat(full_file_name.c_str(), &st) == -1) // 获取文件信息
continue;
if (S_ISDIR(st.st_mode)) { // 判断是否为文件夹
traverseFolders(full_file_name); // 递归遍历子文件夹
} else {
cout << full_file_name << endl; // 输出文件路径
ifstream file(full_file_name); // 打开文件
string line;
while (getline(file, line)) { // 逐行读取文件内容
// 处理文件内容
}
file.close(); // 关闭文件
}
}
closedir(dir); // 关闭文件夹
}
int main() {
string path = "/path/to/folder"; // 定义文件夹路径
traverseFolders(path); // 调用遍历文件夹函数
return 0;
}
```
代码注释:
1. `#include <iostream>`:C++标准输入输出流的头文件。
2. `#include <fstream>`:C++文件流的头文件。
3. `#include <dirent.h>`:C++文件夹操作的头文件。
4. `#include <sys/stat.h>`:C++文件信息的头文件。
5. `#include <unistd.h>`:C++文件路径操作的头文件。
6. `#include <cstring>`:C++字符串操作的头文件。
7. `#include <string>`:C++字符串类的头文件。
8. `void traverseFolders(string path)`:定义遍历文件夹函数,参数为文件夹路径。
9. `DIR *dir`:文件夹指针。
10. `struct dirent *ent`:文件夹内容指针。
11. `struct stat st`:文件信息结构体。
12. `if ((dir = opendir(path.c_str())) == NULL)`:打开文件夹,如果打开失败则返回。
13. `while ((ent = readdir(dir)) != NULL)`:读取文件夹内容,如果读取完毕则返回。
14. `string file_name = ent->d_name`:获取文件名。
15. `string full_file_name = path + "/" + file_name`:获取文件完整路径。
16. `if (file_name[0] == '.') continue`:跳过隐藏文件。
17. `if (stat(full_file_name.c_str(), &st) == -1) continue`:获取文件信息,如果获取失败则返回。
18. `if (S_ISDIR(st.st_mode))`:判断是否为文件夹。
19. `traverseFolders(full_file_name)`:递归遍历子文件夹。
20. `cout << full_file_name << endl`:输出文件路径。
21. `ifstream file(full_file_name)`:打开文件。
22. `string line`:定义字符串变量。
23. `while (getline(file, line))`:逐行读取文件内容,如果读取完毕则返回。
24. `file.close()`:关闭文件。
25. `closedir(dir)`:关闭文件夹。
26. `int main()`:主函数。
27. `string path = "/path/to/folder"`:定义文件夹路径。
28. `traverseFolders(path)`:调用遍历文件夹函数。
29. `return 0`:返回0,表示程序正常结束。
阅读全文