gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 03:07:54 24 4
gpt4 key购买 nike

我正在我的资源文件夹中做文件夹结构,例如... 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);
}

谢谢,

最佳答案

你可以像这样得到Resources目录的路径,

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

然后将Documents附加到路径中,

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

然后您可以使用 NSFileManager 的任何目录列表 API。

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

关于iphone - 如何从 iPhone 的资源文件夹中获取文件夹和文件列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8430685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com