Esempio n. 1
0
 public static RealFile Create(FullPath path)
 {
     using (File.Create(path.ToString()))
     {
         return(new RealFile(path));
     }
 }
Esempio n. 2
0
 public static FileSystemException AlreadyOpen(FullPath path, IOException innerException)
 {
     return(new FileSystemException("The file '" + path.ToString() + "' is already opened.", innerException));
 }