iphone将文件夹从包复制到文档

时间:2010-10-29 15:56:45

标签: iphone nsfilemanager nsbundle

我正在努力工作。我正在尝试将文件夹中的文件夹复制到文档目录。

我想找的文件夹在这里:

... app / Resources / 12 /(一堆jpgs)

NSString *myPath = [[[NSBundle mainBundle] resourcePath]stringByAppendingPathComponent:@"12"];
NSLog(@"%@",myPath);/// returns "..../MyApp.app/12"

NSArray *arrayOf12s = [[NSFileManager defaultManager]contentsOfDirectoryAtPath:myPath error:nil];

NSLog(@"%@",arrayOf12s);     ////always returns NULL

1 个答案:

答案 0 :(得分:2)

如何在-contentsOfDirectoryAtPath中使用NSError参数:error:call?

NSString *myPath = [[[NSBundle mainBundle] resourcePath]stringByAppendingPathComponent:@"12"];
NSLog(@"%@",myPath);/// returns "..../MyApp/12"

NSError *error = nil;
NSArray *arrayOf12s = [[NSFileManager defaultManager]contentsOfDirectoryAtPath:resourceDBFolderPath error:&error];

if (error)
   NSLog(@"Error: %@", [error localizedDescription]);

NSLog(@"%@",arrayOf12s);     ////always returns NULL

它可能会对原因有所启发......