微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

参见英文答案 > 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)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐