1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-02-03 02:37:37 +01:00

25 lines
605 B
Swift
Raw Normal View History

//
// FileManager.swift
//
//
// Created by MainasuK on 2022-1-15.
//
import Foundation
extension FileManager {
2023-09-21 12:52:05 +02:00
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
}
}