mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-02-02 11:33:02 +01:00
17 lines
573 B
Swift
17 lines
573 B
Swift
import Foundation
|
|
|
|
extension FileManager {
|
|
/**
|
|
Moves an item to the trash.
|
|
|
|
This implementation exists only to make the existing method more idiomatic by returning the resulting URL instead of setting the value on an inout argument.
|
|
|
|
FB6735133: FileManager.trashItem(at:resultingItemURL:) is not an idiomatic Swift API
|
|
*/
|
|
@discardableResult
|
|
func trashItem(at url: URL) throws -> URL {
|
|
var resultingItemURL: NSURL!
|
|
try trashItem(at: url, resultingItemURL: &resultingItemURL)
|
|
return resultingItemURL as URL
|
|
}
|
|
} |