In Objective-C, how do I go about converting tilde-based pathnames to full pathnames? That is, I'd like to convert from ~/sandbox
to /Users/TheBobs/sandbox
.
Asked
Active
Viewed 2,384 times
4

zanussi
- 1,286
- 2
- 22
- 29
1 Answers
15
Use NSString's stringByExpandingTildeInPath:
method.
There are also several other methods that make it easy to work with paths.

Mathieu Dutour
- 549
- 3
- 13

Ben S
- 68,394
- 30
- 171
- 212