我有一個目錄,其中包含多個文件,如.jpg,.txt &所有其他文件。 我想要獲得每個文件的編碼路徑&將它存儲在一個數組中。 我已經通過使用contentsOfDirectoryAtPath:error:NSFileManager的方法來完成它,但它給了我存儲在目錄路徑上的對象。 我想獲得我提供的目錄路徑的內容路徑。 這可能嗎?如果如此如何? 任何類型的建議都是可觀的。 在此先感謝。如何訪問目錄的內容
0
A
回答
0
- (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error
是正確的使用方法。從documentation,它返回:
An array of NSString objects identifying the directories and files (including symbolic links) contained in path. Returns an empty array if the directory exists but has no contents. Returns nil if the directory specified at path does not exist or there is some other error accessing it.
相關問題
- 1. 如何從Docker容器內訪問主機中的目錄?
- 2. 如何限制對web根目錄內的目錄的訪問?
- 3. 如何訪問c.str()內容?
- 4. 如何訪問url目錄
- 5. 如何訪問mysql目錄
- 6. 新手:如何訪問像網站這樣的商店/目錄的內容?
- 7. 訪問Umbraco內容的項目引用
- 8. 我如何訪問不在根目錄並且包含內容的頁面
- 9. FMS VOD streaming:如何訪問上傳到webroot/vod目錄的內容?
- 10. 我如何訪問webphere web內容管理器上的項目(內容)
- 11. 訪問內容
- 12. 訪問內容
- 13. 訪問內容
- 14. 如何顯示目錄的內容
- 15. 如何從主機訪問docker容器中的目錄?
- 16. 我如何訪問gridIndex的內容
- 17. 如何訪問XamGrid列的內容
- 18. 如何訪問的詞典內容
- 19. 如何訪問WKWebView中的WKWebView內容?
- 20. 如何訪問API響應的內容?
- 21. 如何訪問內容的鏈接?
- 22. 如何訪問對象的內容?
- 23. 如何訪問DataRow的內容?
- 24. 訪問宏來複制記錄內容
- 25. 如何保護所有目錄內容,但獲得訪問php腳本
- 26. 目錄訪問
- 27. 目錄訪問
- 28. 我如何訪問我的目錄
- 29. 如何訪問Vagrant VM的主目錄?
- 30. 如何訪問android的根目錄
我不明白「它給我存儲在目錄路徑中的對象」。 – 2011-05-13 15:28:00
我的意思是在數組中我得到的文件對象,但不是這些對象的路徑。我想要在tableview中顯示這些對象! – iSagar 2011-05-13 16:33:50