NSURL *url = <#A URL for a directory#>;
NSError *error = nil;
NSArray *properties = [NSArray arrayWithObjects: NSURLLocalizedNameKey,
NSURLCreationDateKey, NSURLLocalizedTypeDescriptionKey,
nil];
NSArray *array = [[NSFileManager defaultManager]
contentsOfDirectoryAtURL:url
includingPropertiesForKeys:properties
options:(NSDirectoryEnumerationSkipsHiddenFiles)
error:&error];
if (array == nil) {
// Handle the error
}
Retrieving the list of items in a directory all at once
最新推荐文章于 2022-10-05 15:13:28 发布
本文详细介绍了如何使用NSFileManager类的contentsOfDirectoryAtURL方法来获取指定目录下的文件和子目录信息,并通过设置包括特定属性的键值对来获取如文件名、创建日期、类型描述等详细信息。
摘要由CSDN通过智能技术生成