Reputation: 10563
Please tell me how to
Get the current working directory's absolute path
If this is the absolute path /Users/iphone/Documents/Archive
how to convert this path to relative path?
How to check if directory exists at patricular path programmatically in Objective-C and if it doesn't exist how to create it programmatically? i need to do this using relative path.
Thank You.
Upvotes: 3
Views: 6129
Reputation: 32626
The main source of information is the Apple File System Programming Guide
From there or subtopics you get information for your questions.
1) NSFileManager currentDirectoryPath
3) NSFileManager fileExistsAtPath:isDirectory:
Upvotes: 11