コード例 #1
0
ファイル: FileOutputHandler.cs プロジェクト: TastyWaffles/hic
        private void RunOnFile(FileInfo fileInfo, HashAlgorithm algorithm)
        {
            string hash = HashUtils.GetHashFromFile(fileInfo, algorithm);

            _streamWriter.WriteLine(fileInfo.FullName + _options.Separator + (_options.Lowercase ? hash.ToLower() : hash));
        }