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