#include "stdafx.h"
#include <iostream> //多目的输入/输出流类的基类
#include <fstream> //串文件流输入/输出类
#include <sstream> //串流输入/输出类
using namespace std;
int main()
{
stringstream temp_ss;
string name_f;
cin >> name_f;
temp_ss << "E:\\" << name_f << ".txt";
temp_ss >> name_f;
temp_ss.clear(); //清空temp_ss
/*
cin >> f_iname; //重复利用
stream << "E:\\" << f_iname << ".txt";
stream >> f_name;
stream.clear();
*/
fstream fp(name_f, ios::out | ios::in | ios::trunc);
if (!fp)
cout << "error";
fp.close();
cout << endl;
system("pause");
return 0;
}
C++创建指定任意文件名称
最新推荐文章于 2023-01-26 23:30:28 发布