好久没写io操作了,手生了好多,最简单实用的C++代码也push上来吧。
环境:mac,xcode(注意mac环境下Windows的函数不能用)
功能:打开一个文件目录,把所有文件名读取到一个TXT文件中
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int readfiledir()
{
struct dirent *ptr;
DIR *dir;
string PATH = "/Users/anitafang/Downloads/Datasets/300W/300w/01_Indoor";
dir=opendir(PATH.c_str());
vector files;
cout << "文件列表: "<< endl;
while((ptr=readdir(dir))!=NULL)
{
//跳过'.'和'..'两个目录
if(ptr->d_name[0] == '.')
continue;
//cout << ptr->d_name << endl;
files.push_back(ptr->d_name);
}
//写入TXT文件
ofstream outfile;
outfile.open("/Users/anitafang/Downloads/Datasets/300W/300w/01_Indoor/list111.txt", ofstream::app); //myfile.bat是存放数据的文件名
for (int i = 0; i < files.size(); ++i)
{
if(outfile.is_open())
{
outfile<
}
else
{
cout<
}
//cout << files[i] << endl;
}
outfile.close();
closedir(dir);
return 0;
}
评说:Windows底下操作更简单,还可以筛选某一类的文件名,比如图像等
//获取特定格式的文件名
void GetAllFormatFiles( string path, vector& files,string format)
{
//文件句柄
long hFile = 0;
//文件信息
struct _finddata_t fileinfo;
string p;
if((hFile = _findfirst(p.assign(path).append("\\*" + format).c_str(),&fileinfo)) != -1)
{
do
{
if((fileinfo.attrib & _A_SUBDIR))
{
if(strcmp(fileinfo.name,".") != 0 && strcmp(fileinfo.name,"..") != 0)
{
//files.push_back(p.assign(path).append("\\").append(fileinfo.name) );
GetAllFormatFiles( p.assign(path).append("\\").append(fileinfo.name), files,format);
}
}
else
{
files.push_back(p.assign(path).append("\\").append(fileinfo.name) );
}
}while(_findnext(hFile, &fileinfo) == 0);
_findclose(hFile);
}
}
int main()
{
string filePath = "testimages\\water";
vector files;
char * distAll = "AllFiles.txt";
//读取所有的文件,包括子文件的文件
//GetAllFiles(filePath, files);
//读取所有格式为jpg的文件
string format = ".jpg";
GetAllFormatFiles(filePath, files,format);
ofstream ofn(distAll);
int size = files.size();
ofn<
for (int i = 0;i
{
ofn<
cout<< files[i] << endl;
}
ofn.close();
return 0;
}
第二:打开文件,然后读出特定的某几行到新的文件中,用GetLine可以一行行读取文件信息。
//生成两个TXT文件分别存储png图像名和TXT图像名
void genfilename(){
cout<
ofstream pngfile;
ofstream ptsfile;
ifstream allfile;
ptsfile.open("/Users/anitafang/Downloads/Datasets/300W/300w/01_Indoor/ptslist.txt", ofstream::app); //
pngfile.open("/Users/anitafang/Downloads/Datasets/300W/300w/01_Indoor/pnglist.txt", ofstream::app); //
allfile.open("/Users/anitafang/Downloads/Datasets/300W/300w/01_Indoor/list.txt");
if(!allfile.is_open()){
cout<
}
string line;
int cont=1;
//将文件中一行行的数据读入line中
while(getline(allfile,line)){
if(cont&1) {
pngfile<
cout<
}//奇数save png list
else{
ptsfile<
}
cont++;
}
ptsfile.close();
pngfile.close();
allfile.close();
}