2012-11-01 553 views
-2

如何從文件夾url獲取所有文件名?下面的代碼返回null。從URL文件夾獲取文件名

path = @"http://localhost/urlFolder/images/"; 

NSArray *directoryContent = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:NULL]; 
+2

請閱讀蘋果指南文件,請RND關於你的東西然後問問題,請清楚你的問題,並要求詳細.. –

回答

0

你有沒有嘗試過的NSFileManager

- (NSArray *)contentsOfDirectoryAtURL:(NSURL *)url includingPropertiesForKeys:(NSArray *)keys options:(NSDirectoryEnumerationOptions)mask error:(NSError **)error 

另一種方法可以使用contentsOfDirectoryAtURL:includingPropertiesForKeys:options:error:代替contentsOfDirectoryAtPath:error:

試試吧。快樂編碼。 :)