获取 iPhone mainBundle 文件

发布于 2024-09-13 06:23:21 字数 174 浏览 5 评论 0原文

我不知道检索 iphone 应用程序 mainBundle 中资源的所有文件名所需的确切代码。如果我可以有某种代码,例如:

  NSArray *array = [[NSBundle mainBundle] getAllResourceFilenames];

它将很有帮助。提前感谢您的帮助!

I dont know the exact code i need to retrieve all of the filenames of the resources in my iphone apps mainBundle. if i could have some kind of code like:

  NSArray *array = [[NSBundle mainBundle] getAllResourceFilenames];

it would be helpful. thanks inadvanced for any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

咋地 2024-09-20 06:23:21

您应该查看 NSFileManager 的 SDK 文档,但这将帮助您入门:

NSString *path = [[NSBundle mainBundle] resourcePath];
NSFileManager *fm = [NSFileManager defaultManager];

NSError *error = nil;

NSArray *directoryAndFileNames = [fm contentsOfDirectoryAtPath:path error:&error];

You should look at the SDK documentation for NSFileManager, but this will get you started:

NSString *path = [[NSBundle mainBundle] resourcePath];
NSFileManager *fm = [NSFileManager defaultManager];

NSError *error = nil;

NSArray *directoryAndFileNames = [fm contentsOfDirectoryAtPath:path error:&error];
櫻之舞 2024-09-20 06:23:21

您可以获取主包的资源路径

[[NSBundle mainBundle] resourcePath];

,然后只需使用常规 NSFileManager 方法即可获取其内容。

You can get the resources path of the main bundle

[[NSBundle mainBundle] resourcePath];

and then simply use the regular NSFileManager methods to get its contents.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文