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(); }
public MappedArchive(DriveLetter drive, ArchiveFile archive) { this.Drive = drive; this.Archive = archive ?? throw new ArgumentNullException(nameof(archive)); }