可可移动目录
如何移动可可中的目录?
每当我使用 NSFileManager 时都会出现错误。
NSFileManager* fileManager = [NSFileManager defaultManager];
[fileManager moveItemAtPath:[srcpath retain] toPath:[dstpath retain] error:&error];
我最终收到错误:
nameOfDir1 无法移动到 nameOfDir2
How do I move directories in cocoa?
Whenever I use NSFileManager I get an error.
NSFileManager* fileManager = [NSFileManager defaultManager];
[fileManager moveItemAtPath:[srcpath retain] toPath:[dstpath retain] error:&error];
I end up getting the error:
nameOfDir1 couldn't be moved to nameOfDir2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哦,我必须在要复制到的目录之后输入要复制的目录名称。
Oh, I had to enter the directory name that I'm copying after the directory that I'm copying to.