Xcode无法打开文本文件C ++

时间:2019-02-04 11:51:06

标签: c++ xcode

嘿,我一直试图在Xcode中写一个名为“ Text.txt”的文本文件,但它无法正常工作。

这是我一直在运行的代码:

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

int main(){

    ifstream myfile;
    myfile.open("Text.txt");

    if(!myfile.is_open()){
        cout<<"File Not Opened"<<endl;
    }

    myfile.close();

    return 0;
}

这是我的文件夹结构:

enter image description here

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:-1)

Text.txt必须与xcodeproj位于同一文件夹中。

如果仍然无法使用,只需使用std::ofstream写入一些文件,然后查看将在何处写入。该文件夹与您需要读取的文件夹相同。

如果直接从终端启动执行的程序,则从中启动的当前终端目录将确定读取目录。