我很难让它发挥作用。我正在尝试将一个文件夹从我的包复制到文档目录。
我要查找的文件夹在这里:
...app/Resources/12/(一堆jpg)
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