Realbasic OS X:查找资源目录
我将数据文件存储在 RealBasic 应用程序的资源目录中。但我如何以编程方式找到它呢?
我浏览了 SpecialFolder 类,但没有发现任何有用的东西。
该应用程序仅适用于 OS X,因此我不需要处理多平台问题。
谢谢!
伊万
I'm storing a data file in the resource directory of a RealBasic app. But how do I programmatically locate it?
I've looked through the SpecialFolder classes, but found nothing useful.
The app will be OS X only, so I don't need to take care of multiplatform issues.
Thanks!
Yvan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 app.executablefile.parent.parent.child("资源")
try app.executablefile.parent.parent.child("Resources")
如果您有 MonkeyBread Software 插件,您可以使用这个:
我认为这更容易理解。
If you have the MonkeyBread Software plugins you can use this:
which I think is much easier to understand.