博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
遍历文件下所有文件
阅读量:6509 次
发布时间:2019-06-24

本文共 1179 字,大约阅读时间需要 3 分钟。

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"<
>word;25 linestream>>word;26 linestream>>word;27 lossb+=atoi(word.c_str());28 }29 lossbytes[file.name]=lossb;30 // cout<<_findnext(lf,&file)<
>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 }

 

转载于:https://www.cnblogs.com/xaf-dfg/p/3875728.html

你可能感兴趣的文章
Go test 命令行参数
查看>>
PXE安装redhat系统
查看>>
逻辑题笔记
查看>>
H3C端口安全技术
查看>>
场景案例:多表关联update(用户积分奖励)
查看>>
制作 OpenStack Linux 镜像 - 每天5分钟玩转 OpenStack(151)
查看>>
QQ设置主显帐号 一样的加你
查看>>
Dubbo与Zookeeper、SpringMVC整合和使用(负载均衡、容错)
查看>>
MySQL升级的3种方法
查看>>
CHATTR(1)
查看>>
EMC AutoStart 中文安装手册
查看>>
表单提交出现问题
查看>>
ubuntu 12.04使用经典gnome界面及优化设置。
查看>>
我国.COM域名627万居全球第2:12月第一周增4.3万
查看>>
Java Service Wrapper实践
查看>>
当 IDENTITY_INSERT 设置为 OFF 时,不能为表中的标识列插入显式值
查看>>
阿里云MaxCompute,用计算力让数据发声
查看>>
tomcat 6 URIEncoding
查看>>
移动网页UI交互设计---体验
查看>>
产品经理工具之–UML建模类
查看>>