400 028 6601

建站动态

根据您的个性需求进行定制 先人一步 抢占小程序红利时代

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://mbwzsj.com/article/gdogih.html

其他资讯

让你的专属顾问为你服务