c++ 遍历文件夹

文章比较了两种在C++中遍历D盘文件的方法:一种是使用标准库的`_findfirst`和`_findnext`,遇到问题;另一种是利用WindowsAPI中的`FindFirstFileA`和`FindNextFileA`,效果良好。作者强调了WINapi在处理此类问题时的优势。
摘要由CSDN通过智能技术生成

方法一
使用_findfirst和_findnext

	#include <io.h>

    intptr_t hFile = -1;
    struct _finddata_t file;
    std::string pathName = "D:\\";
    if (hFile = _findfirst(pathName.append("\\*.*").c_str(), &file) != -1)
    {
        do
        {
            std::cout << file.name << ", " << file.size << "bytes\n";
        } while (_findnext(hFile, &file) == 0);
    }

    _findclose(hFile);

本人使用该方法无法遍历,hFile值为1,不明就里

方法二
WIN api

	#include <windows.h>

    std::string path = "D:\\";
    WIN32_FIND_DATAA fileInfo;
    HANDLE hFile = FindFirstFileA((path + "*.*").c_str(), &fileInfo);

    if (hFile == INVALID_HANDLE_VALUE) {
        return;
    }

    do
    {
        if (strstr(fileInfo.cFileName, ".bmp"))
        {
            filePath.push_back(path + fileInfo.cFileName);
        }

    } while (FindNextFileA(hFile, &fileInfo));

不得不说winapi大法好

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值