Esempio n. 1
0
 public bool FileExists(NPath append)
 {
     ThrowIfNotInitialized();
     if (!append.IsInitialized)
     {
         return(FileExists());
     }
     return(FSWrapper.FileExists(Combine(append)));
 }
Esempio n. 2
0
 public bool FileExists()
 {
     ThrowIfNotInitialized();
     return(FSWrapper.FileExists(this));
 }