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)
|
|
}
|
|
}
|