How can I merge files in Swift / iOS ? The FileManager
can move and copy items but I've seen nothing about merging files. I'd like to have something like
FileManager.default.merge(files: [URL], to location: URL) throws
Files can potentially be big, so I'd rather avoid having to pass their data in memory.
=== here is my own in memory merge:
let data = NSMutableData()
files.forEach({ partLocation in
guard let partData = NSData(contentsOf: partLocation) else { return }
data.append(partData as Data)
do {
try FileManager.default.removeItem(at: partLocation)
} catch {
print("error \(error)")
}
})
data.write(to: destination, atomically: true)