我想使用 NSFileManager 在 MyApp.app/Document 文件夹中创建一个文件夹。(MyApp 是我的自定义应用程序。)
因此,我将 IMG_0525.jpg(用于测试)复制到项目的文件夹中。
然后尝试将其从项目文件夹复制到 MyApp.app/Document 文件夹。
但我不知道如何指定路径名。(源和目标路径)
你能告诉我怎么做吗?
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self generateTableContents];
}
- (void)generateTableContents {
NSFileManager * fileManager = [NSFileManager defaultManager];
NSArray *appsDirectory = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentPath = [appsDirectory objectAtIndex:0];
NSLog(@"documentPath : %@", documentPath);
[fileManager changeCurrentDirectoryPath:documentPath];
[fileManager createDirectoryAtPath:@"user_List1" withIntermediateDirectories:YES attributes:nil error:nil];
// I'm trying to copy IMG_0525.jpg to MyApp.app/Document/user_List1 folder.
[fileManager copyItemAtPath:<#(NSString *)srcPath#> toPath:<#(NSString *)dstPath#> error:<#(NSError * *)error#>];
}