C++编程使用findfirst和findnext查找及遍历文件实现示例
目录
- 一、首先了解一下一个文件结构体:
- 二、用 _findfirst 和 _findnext 查找文件
一、首先了解一下一个文件结构体:
struct _finddata_t {unsignedattrib; time_ttime_create; time_ttime_access; time_ttime_write; _fsize_tsize; charname[260]; };
time_t
,其实就是long而_fsize_t
,就是unsigned long现在来解释一下结构体的数据成员吧。
attrib
,就是所查找文件的属性:_A_ARCH(存档)、_A_HIDDEN(隐藏)、_A_NORMAL(正常)、time_create、time_access和time_write分别是创建文件的时间、最后一次访问文件的时间和文件最后被修改的时间。
_A_RDONLY(只读)、 _A_SUBDIR(文件夹)、_A_SYSTEM(系统)。
size
:文件大小name
:文件名。二、用 _findfirst 和 _findnext 查找文件
1、_findfirst函数:long _findfirst(const char *, struct _finddata_t *);第一个参数为文件名,可以用"*.*"来查找所有文件,也可以用"*.cpp"来查找.cpp文件。第二个参数是_finddata_t结构体指针。若查找成功,返回文件句柄,若失败,返回-1。
2、_findnext函数:int _findnext(long, struct _finddata_t *);第一个参数为文件句柄,第二个参数同样为_finddata_t结构体指针。若查找成功,返回0,失败返回-1。
3、_findclose()函数:int _findclose(long);【C++编程使用findfirst和findnext查找及遍历文件实现示例】只有一个参数,文件句柄。若关闭成功返回0,失败返回-1。
#include#include #include using namespace std; bool transfer(string fileName, int exeNum ); void dfsFolder(string folderPath, ofstream &fout); int main(){_finddata_t file; int k; long HANDLE; k = HANDLE = _findfirst("*.*", &file); while (k != -1){cout << file.name << endl; k = _findnext(HANDLE, &file); }_findclose(HANDLE); transfer("C:\\Windows\\*.exe", 0); ofstream o_fstream; dfsFolder("E:\\\WHU\\Study", o_fstream); return 0; }//_findfirst 函数返回的是匹配到文件的句柄,数据类型为long。//遍历过程可以指定文件类型,这通过FileName的赋值来实现,例如要遍历C : \WINDOWS下的所有.exe文件bool transfer(string fileName , int exeNum){_finddata_t fileInfo; long handle = _findfirst(fileName.c_str(), &fileInfo); if (handle == -1L){cerr << "failed to transfer files" << endl; return false; }do{exeNum++; cout << fileInfo.name << endl; } while (_findnext(handle, &fileInfo) == 0); cout << " .exe files' number:" << exeNum << endl; return true; }//遍历文件夹及其子文件夹下所有文件。操作系统中文件夹目录是树状结构,使用深度搜索策略遍历所有文件。用到_A_SUBDIR属性//在判断有无子目录的if分支中,由于系统在进入一个子目录时,匹配到的头两个文件(夹)是"."(当前目录),".."(上一层目录)。//需要忽略掉这两种情况。当需要对遍历到的文件做处理时,在else分支中添加相应的代码就好void dfsFolder(string folderPath, ofstream &fout){_finddata_t FileInfo; string strfind = folderPath + "\\*"; long Handle = _findfirst(strfind.c_str(), &FileInfo); if (Handle == -1L){cerr << "can not match the folder path" << endl; exit(-1); }do{//判断是否有子目录if (FileInfo.attrib & _A_SUBDIR){//这个语句很重要if ((strcmp(FileInfo.name, ".") != 0) && (strcmp(FileInfo.name, "..") != 0)){string newPath = folderPath + "\\" + FileInfo.name; dfsFolder(newPath, fout); }}else{fout< //#include//#include //using namespace std; ////int main()//{//_finddata_t file; //long longf; //string tempName; ////_findfirst返回的是long型; long __cdecl _findfirst(const char *, struct _finddata_t *)//if ((longf = _findfirst("E:\\WHU\\Study\\*.*", &file)) == -1l)//{//cout << "文件没有找到!\n"; //return 0; //}//do//{//cout << "文件列表:\n"; //tempName = file.name; //if (tempName[0] == '.')//continue; //cout << file.name<
以上就是C++编程使用findfirst和findnext查找及遍历文件实现示例的详细内容,更多关于findfirst和findnext查找及遍历文件的资料请关注脚本之家其它相关文章!
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- opencv|opencv C++模板匹配的简单实现
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程
- 使用composer自动加载类文件
- android|android studio中ndk的使用