首页 > 其他 > 详细

用MD5比较两文件是否相等

时间:2016-05-25 18:34:01      阅读:222      评论:0      收藏:0      [点我收藏+]

public static bool CompareFile(string strSource, string strTarget)
{
using (HashAlgorithm hash = HashAlgorithm.Create())
{
using (FileStream file1 = new FileStream(strSource, FileMode.Open), file2 = new FileStream(strTarget, FileMode.Open))
{
using (MD5 md5_1 = new MD5CryptoServiceProvider(), md5_2 = new MD5CryptoServiceProvider())
{
byte[] hashByte1 = md5_1.ComputeHash(file1);
byte[] haahByte2 = md5_2.ComputeHash(file2);
string str1 = BitConverter.ToString(hashByte1);
string str2 = BitConverter.ToString(haahByte2);
return (str1 == str2);
}
}
}
}

用MD5比较两文件是否相等

原文:http://www.cnblogs.com/zjq1989/p/5527776.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!