码迷,mamicode.com
首页 > 其他好文 > 详细

得到文件的MD5值

时间:2015-02-15 15:02:55      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
/// <summary>
        /// 得到文件的MD5值
        /// </summary>
        /// <param name="Path">文件路径</param>
        /// <returns></returns>
        public static string GetFileMD5Code(string Path)
        {
            try
            {
                if (System.IO.File.Exists(Path))
                {
                    System.IO.FileStream Get_File = new System.IO.FileStream(Path, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read);
                    System.Security.Cryptography.MD5CryptoServiceProvider Get_MD5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
                    byte[] Hash_byte = Get_MD5.ComputeHash(Get_File);
                    string Result = System.BitConverter.ToString(Hash_byte);
                    Result = Result.Replace("-", "");
                    return Result;
                }
                else
                {
                    return "文件路径错误!";
                }
             
            }
            catch (Exception e)
            {
               return e.Message;
            }
        }
View Code

 

得到文件的MD5值

标签:

原文地址:http://www.cnblogs.com/whatever199006/p/4292850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!