OSDN Git Service

staticプロパティをインスタンスプロパティに変更
[kcd/KCD.git] / KCD / FileManagerExtension.swift
1 //
2 //  FileManagerExtension.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/03/02.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Foundation
10
11 extension FileManager {
12     
13     func uniqueFileURL(_ url: URL) -> URL {
14         
15         let fileName = _web_pathWithUniqueFilename(forPath: url.path)
16         
17         return URL(fileURLWithPath: fileName)
18     }
19 }