예제 #1
0
파일: Storage.cs 프로젝트: Kawaian/Utils
 protected abstract bool InternalIsExist(StorageNode path);
예제 #2
0
파일: Storage.cs 프로젝트: Kawaian/Utils
 public static void FixPathChars(StorageNode node)
 {
     node.Path = FixPathChars(node.Path);
 }
예제 #3
0
파일: Storage.cs 프로젝트: Kawaian/Utils
 public static bool IsExist(StorageNode path)
 {
     return(Current.InternalIsExist(path));
 }
예제 #4
0
파일: Storage.cs 프로젝트: Kawaian/Utils
 public static bool CheckPathChars(StorageNode node)
 {
     return(CheckPathChars(node.Path));
 }