Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm sure it's a very basic problem, but I'm having trouble finding anything about it.

Say I've got my app in a folder, in some more folders, like this:

  • MainFolder > SecondaryFolder > AppBundle.app > all the stuff

Then, what I want to do is access a file that is in the "MainFolder". I know I can get the path of the AppBundle by using:

NSLog(@"%@",[[NSBundle mainBundle] resourcePath]);

What I'm uncertain about is how to get the path of the "MainFolder".

Any pointers would be great!

Thanks, Tom

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
526 views
Welcome To Ask or Share your Answers For Others

1 Answer

I'd use -[NSString stringByDeletingLastPathComponent] twice.

NSString *bundlePath = [[NSBundle mainBundle] resourcePath];
NSString *secondParentPath = [[bundlePath stringByDeletingLastPathComponent] stringByDeletingLastPathComponent];

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...