如何命名我在当前日期/时间之后创建的文本文件

时间:2014-02-17 01:11:54

标签: c++ datetime time text-files time-t

首先,我对X ++的了解很少,我只需要编辑我给出的代码。 我有一个C ++程序,它创建一个文本文件并在其中存储数据。现在该程序正在使用:

outfile.open("C:/Users/Admin/Documents/MATLAB/datafile.txt", std::ios::app);

但我需要更改此代码,以便每次运行此代码时,它都会创建一个新文件名。我的建议是以某种方式将时间/日期作为文件名,但我不确定如何做到这一点。我已经尝试过研究,看起来使用time_t是可行的方法,但我不确定如何在我的情况下使用它。

是否可以将时间/日期保存为变量,然后使用:

outfile.open("C:/Users/td954/Documents/MATLAB/<DEFINED VARIABLE>", std::ios::app);
//                                            ^^^^^^^^^^^^^^^^^^
如果是的话,我该怎么做呢?

谢谢你们

5 个答案:

答案 0 :(得分:0)

当然,你可以这样做:

// Calculate the path
time_t current_time = time(nullptr);
std::ostringstream path_out(prefix);
path_out << "-" < < current_time << ".txt";
std::string path = path_out.str();

// Open a file with the specified path.
std::ofstream out(path.c_str(), std::ios::app);

// do stuff with "out"

话虽如此,如果您尝试使用文件名的时间来创建临时文件,那么您正在寻找的解决方案可能是特定于平台的。在基于UNIX的系统上,mkstemp是创建临时文件的首选方式(我不确定在Windows上执行此操作的首选方法是什么,但是谁在乎;)。

答案 1 :(得分:0)

您可以使用通过C ++ 11的日期和时间工具提供的时间戳。特别是,now()命名空间的std::chrono函数将返回您想要的内容:

#include <chrono>

std::ostringstream oss;
oss << "myfile" << std::chrono::system_clock::now() << ".txt";
//                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

std::ofstream out(oss.str(), std::ios_base::app);

答案 2 :(得分:0)

#include <ctime>
#include <stdexcept>
#include <sstream>

std::string getTimestampedFilename(const std::string &basePathname) {
   std::ostringstream filename;
   filename << basePathname << '.' << static_cast<unsigned long>(::time(0));
   return filename.str();
}

现在,你可以在其他地方使用它......

template<class T>
void writeToFile(const std::string &basePathname, T data) {
    std::string filename = getTimestampedFilename(basePathname);
    std::ofstream outfile(filename.c_str());

    if (outfile) {
       outfile << data;
    }
    else {
       throw std::runtime_error("Cannot open '" + filename + "' for writing.");
    }
}

答案 3 :(得分:0)

这是代码:

time_t currentTime = time(0);
tm* currentDate = localtime(&currentTime);
char filename[256] = {0};

strcpy(filename, "C:/Users/Admin/Documents/MATLAB/datafile");
strcat(filename, fmt("-%d-%d-%d@%d.%d.%d.txt",
       currentDate->tm_hour, currentDate->tm_min, currentDate->tm_sec,
       currentDate->tm_mday, currentDate->tm_mon+1,
       currentDate->tm_year+1900).c_str());

outfile.open(filename, std::ios::app);

tm *和time_t在ctime标头中。 fmt就像sprintf一样,它可以格式化字符串。实现(不是我的,在stackoverflow IIRC上找到):

#include <cstdarg>
std::string fmt(const std::string& fmt, ...) {
    int size = 200;
    std::string str;
    va_list ap;
    while (1) {
        str.resize(size);
        va_start(ap, fmt);
        int n = vsnprintf((char*)str.c_str(), size, fmt.c_str(), ap);
        va_end(ap);
        if (n > -1 && n < size) {
            str.resize(n);
            return str;
        }
        if (n > -1)
            size = n + 1;
        else
            size *= 2;
    }
    return str;
}

答案 4 :(得分:-1)

尝试这样的事情:

std::time_t t = std::time(NULL);
std::tm *ptm = std::localtime(&t);
std::stringstream ss;
ss << ptm->tm_year+1900 << std::setw(2) << ptm->tm_mon+1 << ptm->tm_mday << ptm->tm_hour+1 << ptm->tm_min+1 << ptm->tm_sec+1;
outfile.open(("C:/Users/Admin/Documents/MATLAB/datafile_"+ss.str()+".txt").c_str(), std::ios::app);