我现在正在使用xcode 4构建一个将在ios模拟器上运行的项目。磁盘中文件的结构如下:
MyProject // this is a folder
ViewController.h
ViewController.mm
MyProject.xcodeproj
abc.txt
在ViewController.mm文件中,我想读取abc.txt,我尝试以这种方式读取文件:
std::string str("abc.txt");
std::fstream fFid(str);
if(fFid.is_open())
{
NSLog(@"open file succeed");
}
else
{
NSLog(@"Fail to open");
}
然而,似乎它不起作用。有关阅读文本文件的任何想法?谢谢。