gpt4 book ai didi

c++ - 无法在 C++ 中创建包含日期和时间的文件名

转载 作者:搜寻专家 更新时间:2023-10-31 01:05:56 26 4
gpt4 key购买 nike

我有这个:

std::ofstream * file = new std::ofstream();
if (seperator == 1) file->open("C:/Users/Max/Desktop/Sparade filer/" + name + ".txt");
else
{
std::string stamp = (std::string)__DATE__ + " : " + (std::string)__TIME__;
file->open("C:/Users/*directory*/" + name + " - " + stamp + ".txt");
}

*file << data;
delete file;

*directory* 当然是别的东西

但出于某种原因,只有 if block 中的东西才有效。文件名不存在,因此完全根据变量创建一个新文件(name 在这种情况下等于“我的保存”)。因此,如果我将分隔符设置为 1,我会在我的目录中得到一个名为“my file.txt”的新文件,这意味着它可以正常运行。但是,一旦我将其设置为其他内容,我就什么也得不到。查了好几遍,进入else block ,ofstream::open()的第一个参数是有效字符串。

我们将不胜感激!

最佳答案

文件名不允许包含字符“:”。

关于c++ - 无法在 C++ 中创建包含日期和时间的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21784536/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com