I wish to retrieve all filenames from the root directory with the extension *.gs and store them in an array.
I tried using directoryContentsAtPath.. but it says that this method has been deprecated in ios5. Do you know any alternatives?
|
I wish to retrieve all filenames from the root directory with the extension *.gs and store them in an array. I tried using directoryContentsAtPath.. but it says that this method has been deprecated in ios5. Do you know any alternatives? |
||||
|
|
|
You should use
(See Apple's documentation on NSFileManager.) You will end up with something like:
If you feel you don't need to check for a potential error, you may pass
|
||||
|
|