Swa*_*nil 8 iphone objective-c ipad ios
我在我的资源文件夹中做文件夹结构,比如... 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);
}
Run Code Online (Sandbox Code Playgroud)
谢谢,
Sri*_*aju 12
您可以Resources像这样获取目录的路径,
NSString * resourcePath = [[NSBundle mainBundle] resourcePath];
Run Code Online (Sandbox Code Playgroud)
然后追加Documents到路径,
NSString * documentsPath = [resourcePath stringByAppendingPathComponent:@"Documents"];
Run Code Online (Sandbox Code Playgroud)
然后你可以使用任何目录列表API NSFileManager.
NSError * error;
NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsPath error:&error];
Run Code Online (Sandbox Code Playgroud)