I\'m using this method to copy a file:
[fileManager copyItemAtPath:sourcePath toPath:targetPath error:&error];
I want to overwrite a fi
Swift4:
_ = try FileManager.default.replaceItemAt(previousItemUrl, withItemAt: currentItemUrl)