如何创建名称为变量的流文件?

时间:2013-06-29 10:47:23

标签: c++ fstream ofstream

char NAME[256];
cin.getline (NAME,256);
ofstream fout("NAME.txt"); //NAME???????

使用NAME名称创建文件需要做什么?

3 个答案:

答案 0 :(得分:2)

像这样:

#include <string>
#include <fstream>

std::string filename;
std::getline(std::cin, filename);
std::ofstream fout(filename);

在旧版本的C ++中,最后一行必须是:

std::ofstream fout(filename.c_str());

答案 1 :(得分:1)

你可以尝试:

#include <string>
#include <iostream>
#include <fstream>

int main() {
    // use a dynamic sized buffer, like std::string
    std::string filename;
    std::getline(std::cin, filename);
    // open file, 
    // and define the openmode to output and truncate file if it exists before
    std::ofstream fout(filename.c_str(), std::ios::out | std::ios::trunc);
    // try to write
    if (fout) fout << "Hello World!\n";
    else std::cout << "failed to open file\n";
}

一些有用的参考资料:

答案 2 :(得分:0)

你可以试试这个。

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main()
{
    string fileName;
    cout << "Give a name to your file: ";
    cin >> fileName;
    fileName += ".txt"; // important to create .txt file.
    ofstream createFile;
    createFile.open(fileName.c_str(), ios::app);
    createFile << "This will give you a new file with a name that user input." << endl;
    return 0;
}