ios – iPhone:获取Resource文件夹子文件夹中的文件路径

前端之家收集整理的这篇文章主要介绍了ios – iPhone:获取Resource文件夹子文件夹中的文件路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是iPhone编程的新手.我想读取位于资源文件夹子文件夹中的文本文件内容.

资源文件夹结构如下:

资源

> Folder1 —-> Data.txt
> Folder2 —-> Data.txt
> Folder3 —-> Folder1 —-> Data.txt

有多个名为“Data.txt”的文件,那么如何访问每个文件夹中的文件?我知道如何读取文本文件,但如果资源结构类似于上述结构,那么如何获取路径?

例如,如果我要从Folder3访问“Data.txt”文件,我该如何获取文件路径?

请建议.

解决方法

继续精神病患者回答一个完整的例子将如下所示:
NSBundle *thisBundle = [NSBundle bundleForClass:[self class]];
NSString *filePath = nil;

if (filePath = [thisBundle pathForResource:@"Data" ofType:@"txt" inDirectory:@"Folder1"])  {

    theContents = [[NSString alloc] initWithContentsOfFile:filePath];

    // when completed,it is the developer's responsibility to release theContents

}

请注意,您可以使用-pathForResource:ofType:inDirectory来访问子目录中的资源.

原文链接:https://www.f2er.com/iOS/329150.html

猜你在找的iOS相关文章