前言
前段时间做项目需要读取一个文件夹里面所有的txt文件,查询资料后得到以下实现方法:
首先了解一下这个结构体
1
2
3
4
5
6
7
8
|
struct _finddata_t {
unsigned attrib;
time_t time_create;
time_t time_access;
time_t time_write;
_fsize_t size;
char name[260];
};
|
其中各成员变量的含义如下:
- unsigned atrrib: 文件属性的存储位置。它存储一个unsigned单元,用于表示文件的属性。文件属性是用位表示的,主要有以下一些:_A_ARCH(存档)、 _A_HIDDEN(隐藏)、_A_NORMAL(正常)、_A_RDONLY(只读)、_A_SUBDIR(文件夹)、_A_SYSTEM(系统)。这些都是在中定义的宏,可以直接使用,而本身的意义其实是一个无符号整型(只不过这个整型应该是2的几次幂,从而保证只有一位为 1,而其他位为0)。既然是位表示,那么当一个文件有多个属性时,它往往是通过位或的方式,来得到几个属性的综合。例如只读+隐藏+系统属性,应该为:_A_HIDDEN | _A_RDONLY | _A_SYSTEM 。
- time_t time_create: 文件创建时间。
- time_t time_access: 文件最后一次被访问的时间。
- time_t time_write: 文件最后一次被修改的时间。
- _fsize_t size: 文件的大小。
- char name [_MAX_FNAME ]:文件的文件名。这里的_MAX_FNAME是一个常量宏,它在头文件中被定义,表示的是文件名的最大长度。
查找文件需要用到_findfirst 和 _findnext 两个函数,这两个函数包含在io.h库中
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);
只有一个参数,文件句柄。若关闭成功返回0,失败返回-1。
代码及实现
需要输出的文件
运行结果
代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include <iostream>
#include <string>
#include <fstream>
#include <io.h>
using namespace std
void GetLineAndPrint(string in_name)
{
ifstream fin(in_name);
if (!fin)
{
cerr << "open file error" << endl;
exit (-1);
}
string str;
while (getline(fin, str))
{
cout << str << endl;
}
}
int main()
{
struct _finddata_t fileinfo;
string in_path;
string in_name;
cout << "输入文件夹路径:" ;
cin >> in_path;
string curr = in_path + "\\*.txt" ;
long handle;
if ((handle = _findfirst(curr.c_str(), &fileinfo)) == -1L)
{
cout << "没有找到匹配文件!" << endl;
return 0;
}
else
{
in_name = in_path + "\\" + fileinfo.name;
GetLineAndPrint(in_name);
while (!(_findnext(handle, &fileinfo)))
{
in_name = in_path + "\\" + fileinfo.name;
GetLineAndPrint(in_name);
}
_findclose(handle);
}
}
|
注:代码在vs2017中编译通过。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:https://www.cnblogs.com/bigyang/p/8547038.html