6
A
回答
19
檢查文件是否存在:
+(BOOL)fileExistsAtAbsolutePath:(NSString*)filename {
BOOL isDirectory;
BOOL fileExistsAtPath = [[NSFileManager defaultManager] fileExistsAtPath:filename isDirectory:&isDirectory];
return fileExistsAtPath && !isDirectory;
}
檢查目錄是否存在:
+(BOOL)directoryExistsAtAbsolutePath:(NSString*)filename {
BOOL isDirectory;
BOOL fileExistsAtPath = [[NSFileManager defaultManager] fileExistsAtPath:filename isDirectory:&isDirectory];
return fileExistsAtPath && isDirectory;
}
相關問題
- 1. 搜索目錄
- 2. 目錄搜索
- 3. 如何在iOS Spotlight搜索中包含更多搜索項目
- 4. PYTHON - 搜索目錄
- 5. 僅搜索目錄
- 6. 搜索和目錄
- 7. 如何搜索Artifactory API中的目錄?
- 8. slocate - 如何搜索特定目錄
- 9. 如何在c目錄及其子目錄中搜索文件?
- 10. 如何在迭代搜索目錄時跳過目錄? (C#)
- 11. 搜索子目錄python
- 12. 目錄搜索功能C++
- 13. VB.Net搜索系統目錄
- 14. ASP.Net搜索子目錄
- 15. SQLite全文搜索目錄
- 16. 遞歸目錄搜索
- 17. PHP搜索目錄設計
- 18. Magento2目錄搜索問題
- 19. 問題搜索子目錄
- 20. 通過目錄搜索
- 21. Perl的搜索目錄
- 22. gdb搜索源目錄
- 23. 搜索所有目錄中
- 24. 搜索文件的目錄
- 25. Excel VBA:搜索目錄
- 26. 搜索目錄,並猛砸
- 27. 嵌套目錄搜索
- 28. 遞歸搜索子目錄
- 29. 任何.XML文件的搜索目錄
- 30. 如何讓Django在項目根目錄中搜索模板?