gpt4 book ai didi

c++ - fstream不支持动态创建文件

转载 作者:行者123 更新时间:2023-11-27 22:29:28 26 4
gpt4 key购买 nike

我正在尝试动态创建文件,但似乎无法使用 fstream。真的有吗?

#include <iostream>
#include <fstream>
using namespace std;

int main () {

for (int i = 0; i<2; ++i){
std::ofstream outfile
outfile.open ((char)i+"sample_file.txt"); // something like this. numbers appended to the filename
outfile << i;
outfile.close();
}
}

最佳答案

如果您的意思是使用在运行时创建的名称,那么是的,但是您必须以有效的方式构建您的名称。例如。 (在 #include <sstream> 之后):

std::ostringstream fname;
fname << "sample_file_" << i << ".txt";

outfile.open(fname.str().c_str());

关于c++ - fstream不支持动态创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4610142/

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