Rap*_*eta 12 cocoa objective-c nsfilemanager
我正在尝试使用copyItemAtPath复制目录,但每次失败并出现"操作无法完成.文件存在"错误.
这是我正在使用的代码
NSLog(@"Copying from: %@ to: %@", [[NSUserDefaults standardUserDefaults] objectForKey:@"template_1_path"], path);
if(![file_manager copyItemAtPath:[NSString stringWithFormat:@"%@", [[NSUserDefaults standardUserDefaults] objectForKey:@"template_1_path"]] toPath:[NSString stringWithFormat:@"%@", path] error:&error]) {
NSLog(@"%@" [error localizedDescription]);
}
Run Code Online (Sandbox Code Playgroud)
日志示例 -
"Copying from: /Users/testuser/Sites/example_site to: /Users/testuser/Desktop"
"The operation couldn’t be completed. File exists"
Run Code Online (Sandbox Code Playgroud)
关于我做错了什么的任何想法?
提前致谢!
Lea*_*dro 16
您正在尝试使用相同的文件名复制内容.尝试这样的事情:
- (BOOL)copyFolderAtPath:(NSString *)sourceFolder toDestinationFolderAtPath:(NSString*)destinationFolder {
//including root folder.
//Just remove it if you just want to copy the contents of the source folder.
destinationFolder = [destinationFolder stringByAppendingPathComponent:[sourceFolder lastPathComponent]];
NSFileManager * fileManager = [ NSFileManager defaultManager];
NSError * error = nil;
//check if destinationFolder exists
if ([ fileManager fileExistsAtPath:destinationFolder])
{
//removing destination, so soucer may be copied
if (![fileManager removeItemAtPath:destinationFolder error:&error])
{
NSLog(@"Could not remove old files. Error:%@",error);
[error release];
return NO;
}
}
error = nil;
//copying destination
if ( !( [ fileManager copyItemAtPath:sourceFolder toPath:destinationFolder error:&error ]) )
{
NSLog(@"Could not copy report at path %@ to path %@. error %@",sourceFolder, destinationFolder, error);
[error release];
return NO;
}
return YES;
}
Run Code Online (Sandbox Code Playgroud)