iPhone开发处理文件列表

时间:2011-04-27 08:33:21

标签: iphone file nsarray

在我的手机应用程序中,我需要在某个路径上将所有文件标题放入一个数组中,我该怎么做?

1 个答案:

答案 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