使用文件管理器创建文件副本不适用于 Mac 应用程序
我的文档文件夹中的一个文件夹中有一个文件。我想在其他文件夹中使用其他名称创建该文件的副本。我使用的代码是
NSFileManager *fileManager = [[NSFileManager alloc] init];
NSString * filePath = [NSHomeDirectory() stringByAppendingPathComponent:
[NSString stringWithFormat:@"Documents/test/test1/%@%@%@",str,currentaudioTobPlayed,@".mp3"]];
NSString * filePath2 = [NSHomeDirectory() stringByAppendingPathComponent:
[NSString stringWithFormat:@"Documents/test/test1/"]];
NSLog(@"filePat %@",filePath);
NSLog(@"filePath2 %@",filePath2);
NSLog(@"filePath2 %@",fileManager);
[fileManager copyItemAtPath:filePath toPath:filePath2 error:NULL];
[fileManager release];
但是此代码不起作用。请帮忙!
I have a file in one of the folder in my documents folder .I want to create a copy of that file in some other folder with some other name.The code I am using is
NSFileManager *fileManager = [[NSFileManager alloc] init];
NSString * filePath = [NSHomeDirectory() stringByAppendingPathComponent:
[NSString stringWithFormat:@"Documents/test/test1/%@%@%@",str,currentaudioTobPlayed,@".mp3"]];
NSString * filePath2 = [NSHomeDirectory() stringByAppendingPathComponent:
[NSString stringWithFormat:@"Documents/test/test1/"]];
NSLog(@"filePat %@",filePath);
NSLog(@"filePath2 %@",filePath2);
NSLog(@"filePath2 %@",fileManager);
[fileManager copyItemAtPath:filePath toPath:filePath2 error:NULL];
[fileManager release];
But this code is not working.Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在:
您没有指定目标文件名:~/Documents/test/test1 是一个目录。
你可以这样做:
In:
you’re not specifying the destination file name: ~/Documents/test/test1 is a directory.
You could do this instead: