Я делаю структуру папок в моей папке ресурсов, как ... Resource => MyData => S1, затем в S1 => Name.png, data.ppt
Теперь я хочу получить весь список папокимена файлов.Здесь имя MyData будет только статичным, другие могут измениться. Также я могу добавить S1, S2, S3 и количество файлов в этом.Так как же прочитать это содержание через Objective C?Я попробовал ниже код.
NSString *bundlePathName = [[NSBundle mainBundle] bundlePath];
NSString *dataPathName = [bundlePathName stringByAppendingPathComponent:@"Resources"];
NSFileManager *fileManager = [NSFileManager defaultManager];
if ([fileManager fileExistsAtPath:dataPathName]) {
NSLog(@"%@ exists", dataPathName);
BOOL isDir = NO;
[fileManager fileExistsAtPath:dataPathName isDirectory:(&isDir)];
if (isDir == YES) {
NSLog(@"%@ is a directory", dataPathName);
NSArray *contents;
contents = [fileManager contentsOfDirectoryAtPath:dataPathName error:nil];
for (NSString *entity in contents) {
NSLog(@"%@ is within", entity);
}
} else {
NSLog(@"%@ is not a directory", dataPathName);
}
} else {
NSLog(@"%@ does not exist", dataPathName);
}
Спасибо,