fscopyobjectasynch :要求决定文件将被覆盖的位置
我正在开发一个小文件复制实用程序,并使用 fscopyobjectasynch 来复制文件。 当目标中已存在文件时,我想询问用户是否要保留原始文件或覆盖它。
我正在尝试找到一种方法来实现 fscopyobjectasynch
感谢您的帮助
I am developping a small file copy utility and I am using fscopyobjectasynch to copy files.
When a file already exists in the destination, I would like to ask the user if he want to keep the original file or to overwrite it.
I am trying to find a way to achive this whith fscopyobjectasynch
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如 文档中,如果您为其指定
kFSFileOperationOverwrite
标志,FSCopyObjectAsync
将覆盖目标处的现有对象。如果你不这样做,就不会。您可以提供 NSAlert 来确定是否你应该传递那面旗帜。
As stated in the documentation,
FSCopyObjectAsync
will overwrite an existing object at the destination if you give it thekFSFileOperationOverwrite
flag. If you don't, it won't.You can present an NSAlert to determine whether you should pass that flag.