使用fstream和boost::filesystem创建文件并写入数据

在运行程序时,我们可能需要以日志文件的形式保存数据,以供记录和分析。

通过fstream可以实现文件的读写,当文件不存在时,可以自动创建,但前提是文件所在的路径必须存在

如果我们需要把日志保存在其他不存在的路径下,就必须首先借助boost::filesystem::create_directories创建需要的路径,然后fstream才能在这个路径下创建文件。

代码如下:

#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <time.h>
#include <boost/filesystem.hpp>

using namespace std;

static fstream ofs;
static string filename;

int main() {
    // Set log file name.
    char buffer[80];
    time_t now = time(NULL);
    tm* pnow = localtime(&now);
    strftime(buffer, 80, "%Y%m%d_%H%M%S", pnow);
    string directory_name = "~/log";
    filename = directory_name + "/" + string(buffer) + ".csv";
    boost::filesystem::create_directories(boost::filesystem::path(directory_name));
    ofs.open(filename.c_str(), std::ios::app);
    cout << filename;
    
    // write header for log file
    if (!ofs)
    {
        std::cerr << "Could not open " << filename << "." << std::endl;
        exit(1);
    }

    ofs << "the data you want to save" <<  endl; 
    
    ofs.close();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值