我可以考虑采用数组的方法:
NSArray *doc_contents = [fileManager contentsOfDirectoryAtPath:documentsDirectory error:nil];
并进行字符串解析以查找扩展名,但这似乎是一种迂回的方式。是否有一种切割和干燥的方式来计算我的iPhone应用程序文档目录中的.jpg文件数量?
感谢。
编辑解决方法:Creating an array from documentsDirectory includes ends with .MOV
答案 0 :(得分:1)
这两个链接都是解决此问题的绝佳资源。
这个问题涉及您正在寻找多个文件扩展名的情况:
NSPredicate endswith multiple files
这个只关注一个扩展名:
Creating an array from documentsDirectory includes ends with .MOV
两种方法都使用NSPredicate类。
答案 1 :(得分:0)
您应该查看名为“Xcode Statistician”的应用程序。它真的很干净,并且会为你提供大量的其他信息,例如总行数等等。