IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> C++:遍历指定路径下的文件/图片 -> 正文阅读

[C++知识库]C++:遍历指定路径下的文件/图片

#include <iostream>
#include <vector>
#include <io.h>
using namespace std;

bool get_filelist_from_dir(std::string path, std::vector<std::string>& files)
{
    long long  hFile = 0;
    //_findnext()第一个参数”路径句柄”,返回的类型为intptr_t(long long),
    //如果定义为long,在win7中是没有问题,但是在win10中就要改为long long或者intptr_t
    struct _finddata_t fileinfo;
    files.clear();
    if ((hFile = _findfirst(path.c_str(), &fileinfo)) != -1)
    {
        do
        {
            cout << fileinfo.name << endl;
            if (!(fileinfo.attrib & _A_SUBDIR))
            {
                files.push_back(fileinfo.name);
            }
        } while (_findnext(hFile, &fileinfo) == 0);
        _findclose(hFile);
        return true;
    }
    else
    {
        return false;
    }

    //另一种写法
    //struct _finddata_t fileinfo;
    //long long handle;
    _findnext()第一个参数”路径句柄”,返回的类型为intptr_t(long long),
    如果定义为long,在win7中是没有问题,但是在win10中就要改为long long或者intptr_t
    //handle = _findfirst(path.c_str(), &fileinfo);  //返回文件句柄<br>
    //if (handle == -1)
    //{
    //	cout << "fail..." << endl;
    //	return false;
    //}
    //else
    //{
    //	cout << fileinfo.name << endl;
    //	files.push_back(fileinfo.name);
    //}
    //cout << "#### 1 ####" << endl;
    //while (!_findnext(handle, &fileinfo))
    //{
    //	cout << "#### 2 ####" << endl;
    //	cout << fileinfo.name << endl;
    //}
    //_findclose(handle);
    //return true;
}

vector<string> getImageList(std::string file_path, std::string suffix)
{
    //string file_path = "D:\\image\\";
    //string suffix = "*.png";
    string search_path = file_path + suffix;
    vector<string> file_list;//保存遍历到的文件name
    if (!get_filelist_from_dir(search_path, file_list))
        cout << "open file error!" << endl;
    vector<string> image_path_list;//保存文件绝对路径
    for (int i = 0; i < file_list.size(); i++)
    {
        image_path_list.push_back(file_path + file_list[i]);
        //Mat image = imread(image_path);
        //这里可以对图像进行处理
    }
    return image_path_list;
}

int main()
{
    vector<string> output;
    string filepath = "D:\\image\\";
    string suffix = "*.*";//后缀名
    output = getImageList(filepath, suffix);
    return 0;
}

涉及到了一个结构体,需要用的是name属性,当然假如需要文件大小的话也可以把size提取出来

#define _finddata_t     _finddata64i32_t

struct _finddata64i32_t
{
    unsigned    attrib;
    __time64_t  time_create;    // -1 for FAT file systems
    __time64_t  time_access;    // -1 for FAT file systems
    __time64_t  time_write;
    _fsize_t    size;
    char        name[260];
};

?

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 18:05:26  更:2022-03-30 18:06:36 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:34:02-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码