CHGenerator/Sources/Generator/Extensions/Data+Extensions.swift

10 lines
170 B
Swift
Raw Permalink Normal View History

import Foundation
extension Data {
func createFolderAndWrite(to url: URL) throws {
try url.ensureParentFolderExistence()
try write(to: url)
}
}