コード例 #1
0
 public ChangeFileHashDetails(string patchFilePath, string oldFilePath, string newFilePath, string rootNewFolderLocation, string rootOldFolderlocation, string rootPatchFolderLocation)
 {
     _fileComputeHasher = new FileComputeHasher();
     _patchFilePath = patchFilePath;
     _oldFilePath = oldFilePath;
     _newFilePath = newFilePath;
     _relativeNewFileLocation = newFilePath.Replace(rootNewFolderLocation, "");
     _relativeOldFileLocation = oldFilePath.Replace(rootOldFolderlocation, "");
     _relativePatchFileLocation = patchFilePath.Replace(rootPatchFolderLocation, "");
     ComputeHashes();
 }
コード例 #2
0
 public ChangeFileHashDetails()
 {
     _fileComputeHasher = new FileComputeHasher();
 }