OSDN Git Service

MappingConfigurationを簡略化
[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     func uniqueFileURL(_ url: URL) -> URL {
13         let fileName = _web_pathWithUniqueFilename(forPath: url.path)
14         return URL(fileURLWithPath: fileName)
15     }
16 }