public DirectoryFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings)
 {
     SetBackupMode();
     if (BackupMode == BackupMode.Directory)
         Children = ConstructChildrenList(path);
 }
 public JunctionFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings: settings)
 {
 }
 protected DirectoryishFso(string path, string unmappedPath, FileSystemObjectSettings settings)
     : base(path, unmappedPath, settings)
 {
 }
 public DirectorySymlinkFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings)
 {
     SetTarget(path);
     SetBackupMode();
 }
Exemplo n.º 5
0
 public FileReparsePointFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings)
 {
     throw new FileReparsePointsNotImplemented(path);
 }
Exemplo n.º 6
0
 public FileHardlinkFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings)
 {
     Peers = FileSystemOperations.ListAllHardlinks(path);
     SetBackupMode();
 }
Exemplo n.º 7
0
 public RegularFileFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings)
 {
     SetBackupMode();
 }
Exemplo n.º 8
0
 protected FilishFso(string path, string unmappedPath, FileSystemObjectSettings settings)
     : base(path, unmappedPath, settings)
 {
     SetMembers(path);
 }
Exemplo n.º 9
0
 public FileSymlinkFso(string path, string unmappedPath, FileSystemObjectSettings settings = null)
     : base(path, unmappedPath, settings)
 {
     SetMembers(path);
     SetBackupMode();
 }