如何访问有关iphone中文件的文件信息(如创建日期,大小等)?我需要根据创建日期,大小等对某些文件进行排序。
答案 0 :(得分:5)
试试这个方法:
NSError *error;
NSDictionary* attributes = [[NSFileManager defaultManager]
attributesOfItemAtPath: filePath
error: &error];
然后,您可以查询[attributes fileCreationDate]
或[attributes fileSize]
。有关NSFileAttributes
的{{1}}类别,请参阅NSFileManager.h。