ifstream_class.open无法打开文件

时间:2016-10-10 22:55:34

标签: c++11 ifstream

您好我是C ++新手,我遇到了这个问题。我查看了很多在线资源,但我找不到答案。请帮忙。谢谢。

std::ifstream openfile;
openfile.open("file.txt");
if(openfile.is_open()){
    std::cout<<"opned"<<std::endl;
}
else{
    std::cout<<"not open"<<std::endl;
}

输出始终“未打开”

1 个答案:

答案 0 :(得分:0)

使用xCode的目录路径出现问题。 读完这篇文章后我才意识到:

C++ Program in Xcode not outputting simple text file using outFile