gpt4 book ai didi

iphone - 在iphone sdk中将文件夹从资源复制到文档

转载 作者:行者123 更新时间:2023-11-29 13:39:37 24 4
gpt4 key购买 nike

我在资源中有一个名为 SketchImages 的子文件夹,其中包含 300 张 PNG 图像,我需要做的是在我的应用程序启动时将此文件夹复制到 iphone sdk 的文档文件夹中,我正在尝试以下代码但没有成功

BOOL success;
NSFileManager *fileManager = [[NSFileManager defaultManager] init];
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *documentDBFolderPath = [documentsDirectory
stringByAppendingPathComponent:@"SketchImages"];
success = [fileManager fileExistsAtPath:documentDBFolderPath];

if (success)
{
return;
}else
{
NSString *resourceDBFolderPath = [[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"DB"];
//[fileManager createDirectoryAtPath: documentDBFolderPath attributes:nil];
[fileManager copyItemAtPath:resourceDBFolderPath toPath:documentDBFolderPath
error:&error];
}

我们将不胜感激任何帮助

最佳答案

您使用了错误的子文件夹名称:

NSString *resourceDBFolderPath = [[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"SketchImages"];

关于iphone - 在iphone sdk中将文件夹从资源复制到文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9528287/

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