OSDN Git Service

staticプロパティをインスタンスプロパティに変更
[kcd/KCD.git] / KCD / FileManagerExtension.swift
index d36eee0..dbf29d8 100644 (file)
@@ -9,8 +9,11 @@
 import Foundation
 
 extension FileManager {
+    
     func uniqueFileURL(_ url: URL) -> URL {
+        
         let fileName = _web_pathWithUniqueFilename(forPath: url.path)
+        
         return URL(fileURLWithPath: fileName)
     }
 }