我想复制一个包含多个文件夹的文件夹,并且该文件夹包含多个文件。如果此文件夹存在,我想将它们保留在其中,并覆盖文件(如果存在)。如果这些文件不存在,则可以自然地添加它们。
_ = try FileManager.default.replaceItemAt(previousItemUrl, withItemAt: currentItemUrl)
例如:
设备上现有的文件:
APP/XXX/a.txt
APP/XXX/b.txt
APP/XXX/c.txt
APP/YYY/d.txt
APP/ZZZ/e.txt
APP/ZZZ/f.txt
要复制的文件:
APP/XXX/c.txt //Will override
APP/YYY/g.txt //new file added
APP/ZZZ/h.txt //new file added
APP/AAA //new folder added
我必须创建自己的递归函数,还是该函数本身已经存在?
谢谢。
答案 0 :(得分:0)
我们可以使用以下本机方法。它将源复制到目标。
func copyItem(atPath srcPath: String,
toPath dstPath: String) throws
我们还可以通过实现下面提到的其他委托方法来控制替代用例。
optional func fileManager(_ fileManager: FileManager,
shouldCopyItemAt srcURL: URL,
to dstURL: URL) -> Bool
您可以在Apple document
中找到所有这些详细信息