您的当前位置:首页正文

c++数据输出到txt文件中

2024-11-23 来源:个人技术集锦
#include <fstream>
    ofstream outfile;
    outfile.open("/data/opencvYolo/opencvYolo/data32.txt", ofstream::app);
    outfile<<"Yolotime: "<<(double)(Yolotime-start)/CLOCKS_PER_SEC<<"s"<<endl;
outfile.close();

这个缺少每次打开文件前判断是否存在这个文件,若存在就删除了。
不然现在的情况就是每次会把数据存在这个文件的最后,无限添加。。。。

显示全文