ios – 移动文件并覆盖[复制]

ios – 移动文件并覆盖[复制],第1张

概述参见英文答案 > How to overwrite a file with NSFileManager when copying?                                    9个 我正在尝试移动文件,即使已经存在具有相同名称的文件. NSFileManager().moveItemAtURL(location1, toURL: location2) NSFileMana @H_403_1@ 参见英文答案 > How to overwrite a file with NSFileManager when copying?                                    9个
我正在尝试移动文件,即使已经存在具有相同名称的文件.

NSfileManager().moveItemAtURL(location1,toURL: location2)

NSfileManager的方法moveItemAtURL是否有覆盖选项?如何替换现有文件?

解决方法 您始终可以检查文件是否存在于目标位置.
如果是,请删除它并移动您的项目.

斯威夫特2.3

let filemgr = NSfileManager.defaultManager()if !filemgr.fileExistsAtPath(location2) {  do  {    try filemgr.moveItemAtURL(location1,toURL: location2)  }  catch  {  }}else{  do  {    try filemgr.removeItemAtPath(location2)    try filemgr.moveItemAtURL(location1,toURL: location2)  }  catch  {  }}

斯威夫特3

try? fileManager.default.removeItem(at: location2)try fileManager.default.copyItem(at: location1,to: location2)
总结

以上是内存溢出为你收集整理的ios – 移动文件并覆盖[复制]全部内容,希望文章能够帮你解决ios – 移动文件并覆盖[复制]所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1077706.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存