当前位置: 技术问答>linux和unix
如何打开一个大文件夹中的多个同名文件,并进行相同的读写操作阿
来源: 互联网 发布时间:2016-02-21
本文导语: 大家好: 如何打开一个大文件夹中的多个同名文件,并进行相同的读写操作阿。 这个我想了一天了都没有想出来,今天向尽办法也地解决了。 | 你? 在 win32 下? 那为什么到linu...
大家好:
如何打开一个大文件夹中的多个同名文件,并进行相同的读写操作阿。
这个我想了一天了都没有想出来,今天向尽办法也地解决了。
如何打开一个大文件夹中的多个同名文件,并进行相同的读写操作阿。
这个我想了一天了都没有想出来,今天向尽办法也地解决了。
|
你? 在 win32 下? 那为什么到linux 版块来问啊?
昏..
那你用下面的代码试试....
昏..
那你用下面的代码试试....
#include
#include
#include
using namespace std;
void filesearch(string path,int layer)
{
struct _finddata_t filefind;
string curr=path+"\*.*";
int done=0,i,handle;
if((handle=_findfirst(curr.c_str(),&filefind))==-1)return;
while(!(done=_findnext(handle,&filefind)))
{
if(!strcmp(filefind.name,".."))continue;
for(i=0;i