Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Split File Path into Components in iPhone SDK

Is there a framework or a library that I could use to split a file path into its components in iPhone SDK? I know I could code it myself, but I don't want to reinvent the wheel.

like image 660
luvieere Avatar asked Nov 25 '09 20:11

luvieere


1 Answers

-[NSString pathComponents] is made exactly for this.

like image 98
Ole Begemann Avatar answered Nov 04 '22 04:11

Ole Begemann