Ejemplo n.º 1
0
        private void RunOnFile(FileInfo fileInfo, HashAlgorithm algorithm)
        {
            string hash = HashUtils.GetHashFromFile(fileInfo, algorithm);

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