linux下遍历指定路径下文件,包含子文件夹中的文件

本文介绍了如何在Linux环境下使用C++编程语言遍历指定路径下的所有文件,包括子文件夹中的文件。通过递归算法,实现对目录的深度遍历,访问每个文件并进行相应的操作。
摘要由CSDN通过智能技术生成
#include <iostream>
#include <memory.h>
#include <dirent.h>
#include <vector>
using namespace std;
 
string gFileLoadPath = "/home/mypath/";
vector<string> getFilesList(string dir);
 
int main()
{
    char dir[200];
    string Path;
    cout << "Enter a directory: ";
    cin.getline(dir, 200);
    vector<string>allFileName = getFilesList(dir);
    cout << "输出所有文件的路径:" << endl;
    for (size_t i = 0; i < allFileName.size(); i++)
     {
       string filename = allFileName.at(i);
       Path = filename;
       cout << Path << endl;
     }
     return 0;
}
 
vector<string> getFilesList(string dirpath){
    DIR *dir = opendir(dirpath.c_str());
    if (dir == NULL)
    {
        cout << "opendir error" << endl;
    }
 
    vector<string> allPath;
    struct dirent *entry;
    wh
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值