C#获取文件的MD5码-成都创新互联网站建设

关于创新互联

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

C#获取文件的MD5码

public static string GetFileMD5(string FilePath)
        {
   try
            {
                FileStream get_file= new FileStream(FilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
                System.Security.Cryptography.MD5CryptoServiceProvider get_md5= new System.Security.Cryptography.MD5CryptoServiceProvider();
       byte[] hash_byte = get_md5.ComputeHash(get_file);
       string resule = System.BitConverter.ToString(hash_byte);
                resule= resule.Replace("-", "");
                get_file.Close();
       return resule;
            }
   catch
            {
       return string.Empty;
            }
        }

文章标题:C#获取文件的MD5码
链接URL:http://kswsj.cn/article/gdogih.html

其他资讯