在我的手机应用程序中,我需要在某个路径上将所有文件标题放入一个数组中,我该怎么做?
答案 0 :(得分:0)
// Contains the names of all files in the specified directory.
NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:NULL];
如果您想要项目的完整路径,只需添加path
。您还可以使用fileExistsAtPath:isDirectory:
过滤掉目录。有关详细信息,请参阅NSFileManager reference。