如何处理支持文件目录中的同名文件

发布于 2024-11-29 17:49:25 字数 147 浏览 0 评论 0 原文

举例来说,在 Xcode 中,我在旧的支持文件中创建了 3 个文件夹,分别命名为“a”、“b”和“c”。

在每个文件夹中,我都有一个 xml 文件名“file.xml”。

如何使用 NSMainBundle 获取这 3 个不同 xml 文件的路径?

Say for example In Xcode I make 3 folders in my supporting files older named "a" "b" and "c".

In each of these folders I have an xml file name "file.xml".

How can I use NSMainBundle to get paths to these 3 different xml files?

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

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

发布评论

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

评论(1

无戏配角 2024-12-06 17:49:25

为了在运行时获取这些文件,Xcode 将在复制捆绑资源阶段复制它们。这通常会复制到捆绑包的根目录中。要处理目录,请参阅@CocoaFu对这个SO问题的回答。

然后在代码中

NSBundle* bundle = [NSBundle mainBundle] 将为您提供主包

从此您可以使用 pathForResource:ofType:inDirectory 在目录中查找: 例如,

NSString* path = [bundle pathForResource:@"file.xml" 
                                  ofType:nil 
                             inDirectory:@"a"];

这些方法在 NSBundle 类参考 另请参阅 捆绑包编程指南

To get these files at runtime Xcode will copy them in the Copy Bundle Resource phase. This normally copies into the root of the bundle. To deal with directories see @CocoaFu's answer to this SO question.

Then in the code

NSBundle* bundle = [NSBundle mainBundle] will give you the main bundle

From this you look in directories using pathForResource:ofType:inDirectory: e.g.

NSString* path = [bundle pathForResource:@"file.xml" 
                                  ofType:nil 
                             inDirectory:@"a"];

The methods are given in NSBundle class reference also see the Bundle Programming guide

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