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

用MD5比较两文件是否相等

时间:2016-05-25 18:34:21      阅读:126      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!