我只是想读取主文件夹中我的项目中的文本文件的内容。
// file name is "logs"
// it returns nil
NSString *bundlePath = [[NSBundle mainBundle] pathForResource:@"logs" ofType:nil];
// file name is "logs.txt"
// it returns nil
NSString *bundlePath = [[NSBundle mainBundle] pathForResource:@"logs" ofType:@"txt"];
问题:
- 如何获取项目中包含的文件的路径?
- 如何获取项目根文件夹的路径?