作为 iPhone 应用程序开发的新手,请帮我解决这个问题。根据我的代码,我试图在 Documents 中创建一个名为“New Folder”的文件夹。当我运行此代码时,我能够在 NSLog 中使用完整路径获取输出,并且我也可以看到在我的系统中创建文件夹的位置。但问题是我无法在 iPhone 模拟器中看到这个文件夹。有什么办法可以查看我在模拟器中创建的这个文件夹吗?
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSLog(@"%d",[paths count]);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/New Folder", documentsDirectory];
NSLog(@"Path is: %@",filePath);
NSFileManager *manager = [NSFileManager defaultManager];
NSLog(@"%d",[manager createDirectoryAtPath:filePath withIntermediateDirectories:YES attributes:nil error:nil]);
NSLog(@"Folder created");