fstream代码没有在我的桌面上创建文件

时间:2015-08-07 15:19:13

标签: c++ file-io

我是使用c ++编程的新手,遇到了问题。我正在使用代码块IDE和它附带的默认编译器。

我的问题是,为什么写这段代码时我的桌面上没有创建文件?

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    ofstream output;
    output.open("Desktop\\demofile.txt");

    cout << "Now writing data to file" << endl;

    // write four names to file

    output << "Bach" << endl;
    output << "Beethoven" << endl;
    output << "Mozart" << endl;
    output << "Schubert" << endl;

    output.close();
    cout << "Done!" << endl;

    return 0;
}

2 个答案:

答案 0 :(得分:2)

因为文件(您正在使用的文件)的相对路径通常从启动程序的目录开始(但IDE可以更改它)。

确保使用完整路径(C:\ ...)

答案 1 :(得分:0)

  • 只需更换

    即可
    output.open("Desktop\\demofile.txt");    
    

    以下行

    output.open("Desktop//demofile.txt");  
    
  • 表示使用正斜杠而不是反斜杠。