获取文件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值的主要内容,如果未能解决你的问题,请参考以下文章