我已成功在 iPhone 模拟器的“文档”文件夹中创建文件夹。
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents folder
NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:@"/MyFolder"];
NSLog(@"path is:%@",dataPath);
if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath])
{
[[NSFileManager defaultManager] createDirectoryAtPath:dataPath withIntermediateDirectories:NO attributes:nil error:&error];
}
我可以看到文件夹是在模拟器中创建的......现在我需要在我的应用程序屏幕中显示该文件夹。意味着用户可以看到(通过单击“+”或其他任何内容)该文件夹已创建。
我还提到了 iPhone/iPad: Unable to copy folder from NSBundle to NSDocumentDirectory但不是我需要的.....
是否可以显示创建的文件夹?如果是,那怎么办??任何帮助,将不胜感激....
提前谢谢:) :)