嘿,我一直试图在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;
}
这是我的文件夹结构:
任何帮助将不胜感激
答案 0 :(得分:-1)
Text.txt
必须与xcodeproj
位于同一文件夹中。
如果仍然无法使用,只需使用std::ofstream
写入一些文件,然后查看将在何处写入。该文件夹与您需要读取的文件夹相同。
如果直接从终端启动执行的程序,则从中启动的当前终端目录将确定读取目录。