Ejemplo n.º 1
0
 public DifferencingFolder(DriveLetter drive, ArchiveFile archive, string hostPath)
     : base(hostPath)
 {
     this.Drive   = drive;
     this.Archive = archive ?? throw new ArgumentNullException(nameof(archive));
     this.deletes = this.ReadDeletes();
 }
Ejemplo n.º 2
0
 public MappedArchive(DriveLetter drive, ArchiveFile archive)
 {
     this.Drive   = drive;
     this.Archive = archive ?? throw new ArgumentNullException(nameof(archive));
 }