internal void _Mount(FileSystem fileSystem, String mountPath)
 {
     base.Mount(fileSystem, mountPath);
 }
Esempio n. 2
0
 internal FileSystemHelper(FileSystem fs)
 {
     this.parentFileSystem = fs;
 }
 public override void Mount(FileSystem fileSystem, string mountPath)
 {
     throw new InvalidOperationException("You cannot mount/unmount on the physical file system.");
 }