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

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

try app.executablefile.parent.parent.child("Resources")

link|improve this answer
feedback

If you have the MonkeyBread Software plugins you can use this:

  dim f as FolderItem 
  f = app.BundleResourceFolderMBS

which I think is much easier to understand.

link|improve this answer
I don't have them, they're waaay to expensive for me :( – Yvan JANSSENS Nov 8 '10 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.