如何从iPhone的资源文件夹中获取文件夹和文件列表



我在我的资源文件夹做文件夹结构像…资源=> 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);
    }

谢谢,

您可以像这样获得Resources目录的路径,

NSString * resourcePath = [[NSBundle mainBundle] resourcePath];

然后将Documents附加到路径,

NSString * documentsPath = [resourcePath stringByAppendingPathComponent:@"Documents"];

那么您可以使用NSFileManager的任何目录列表api。

NSError * error;
NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsPath error:&error];

最新更新