在c++中,可以使用標準庫中的<filesystem>
來遍歷文件夾中的所有文件。下面是一個簡單的示例代碼:
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
void listFiles(const std::string& path) {
for (const auto& entry : fs::directory_iterator(path)) {
if (fs::is_regular_file(entry.path())) {
std::cout << entry.path() << std::endl;
} else if (fs::is_directory(entry.path())) {
listFiles(entry.path().string());
}
}
}
int main() {
std::string path = "path_to_your_folder";
listFiles(path);
return 0;
}
在上面的示例中,listFiles
函數接收一個文件夾路徑作為參數,然后遍歷該文件夾中的所有文件。如果遇到子文件夾,遞歸調用listFiles
函數來遍歷子文件夾中的文件。通過調用entry.path()
可以獲取當前文件或文件夾的路徑信息。