获取文件Md5值

Posted 该昵称有误

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取文件Md5值相关的知识,希望对你有一定的参考价值。

        private static string GetFileMD5(string filePath)
        {
            string _md5Value = string.Empty;
            try
            {
                if (System.IO.File.Exists(filePath))
                {
                    FileStream file = new FileStream(filePath, FileMode.Open);
                    System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
                    byte[] retVal = md5.ComputeHash(file);
                    file.Close();
                    file.Dispose();
                    _md5Value= BitConverter.ToString(retVal).Replace("-", "");
                }
                return _md5Value;
            }
            catch (Exception ex)
            {
                //throw new Exception(string.Format("GetFileMD5_Error_{0}_{1}", DateTime.Now, ex.Message));
                return _md5Value;
            }
        }

 

以上是关于获取文件Md5值的主要内容,如果未能解决你的问题,请参考以下文章

使用OpenSSL获取文件的MD5值

在浏览器端获取文件的MD5值

shell脚本获取MD5值

获取文件的md5值

iOS开发之获取文件的md5值

MD5工具类,提供字符串MD5加密文件MD5值获取(校验)功能