80d3c08a93
- Move to global objects for files and validation - Only write changed files - Check images for changes before scaling - Simplify code
10 lines
170 B
Swift
10 lines
170 B
Swift
import Foundation
|
|
|
|
extension Data {
|
|
|
|
func createFolderAndWrite(to url: URL) throws {
|
|
try url.ensureParentFolderExistence()
|
|
try write(to: url)
|
|
}
|
|
}
|