1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2024-12-14 09:45:00 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonCore/Extension/FileManager.swift
2023-09-22 15:27:46 +02:00

25 lines
605 B
Swift

//
// FileManager.swift
//
//
// Created by MainasuK on 2022-1-15.
//
import Foundation
extension FileManager {
public func createTemporaryFileURL(
filename: String,
pathExtension: String
) throws -> URL {
let tempDirectoryURL = FileManager.default.temporaryDirectory
let fileURL = tempDirectoryURL
.appendingPathComponent(filename)
.appendingPathExtension(pathExtension)
try FileManager.default.createDirectory(at: tempDirectoryURL, withIntermediateDirectories: true, attributes: nil)
return fileURL
}
}