我想通過使用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#>];
}
哦!天哪。多麼美好的解釋! :D –
謝謝你的幫助。 –