快上网专注成都网站设计 成都网站制作 成都网站建设
成都网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

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码
网页网址:http://6mz.cn/article/gdogih.html

其他资讯