码迷,mamicode.com
首页 > 其他好文 > 详细

遍历文件下所有文件

时间:2014-07-29 17:34:02      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   文件   div   ar   line   

 1 _finddata_t file;
 2 
 3     char* szFilePack="F:\\RTMFP\\measurement data\\ME4\\recursive2\\lossbyte\\*.txt";
 4     long lf;
 5     if ((lf=_findfirst(szFilePack,&file))==-1)//==优先级较高所以要加括号,找到文件夹下面第一个符合的文件
 6     {
 7         cout<<"cannot find file"<<endl;
 8     }
 9     else
10     {
11         cout<<"1111 "<<file.name<<endl;
12         ifstream infile("F:\\RTMFP\\measurement data\\ME4\\recursive2\\lossbyte\\"+string(file.name));
13         if (infile==0)
14             cout<<"infile open failed! "<<file.name<<endl;
15         else
16         {
17             //cout<<"1111 "<<file.name<<endl;
18             int lossb=0;
19             string line,word;
20             istringstream linestream;
21             while(getline(infile,line))
22             {
23                 linestream=istringstream(line);
24                 linestream>>word;
25                 linestream>>word;
26                 linestream>>word;
27                 lossb+=atoi(word.c_str());
28             }
29             lossbytes[file.name]=lossb;
30         //    cout<<_findnext(lf,&file)<<endl;
31         
32             while(_findnext(lf,&file)==0)
33             {
34                 cout<<"1111 "<<file.name<<endl;
35                 //cin>>x;
36                 int lossb=0;
37                 string line,word;
38                 ifstream infile("F:\\RTMFP\\measurement data\\ME4\\recursive2\\lossbyte\\"+string(file.name));
39                 istringstream linestream;
40                 while(getline(infile,line))
41                 {
42                     linestream=istringstream(line);
43                     linestream>>word;
44                     linestream>>word;
45                     linestream>>word;
46                     lossb+=atoi(word.c_str());
47                 }
48                 lossbytes[file.name]=lossb;
49             }
50         }
51     }

 

遍历文件下所有文件,布布扣,bubuko.com

遍历文件下所有文件

标签:style   blog   color   os   文件   div   ar   line   

原文地址:http://www.cnblogs.com/xaf-dfg/p/3875728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!