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

判断两个文件是否相同

时间:2019-01-28 17:45:42      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:tco   creat   string   字节   compute   文件   path   write   mod   

using (HashAlgorithm hash = HashAlgorithm.Create())
{
using (FileStream file1 = new FileStream(FilePath1, FileMode.Open), file2 = new FileStream(FilePath2, FileMode.Open))
{
byte[] hashByte1 = hash.ComputeHash(file1);//哈希算法根据文本得到哈希码的字节数组
byte[] hashByte2 = hash.ComputeHash(file2);
string str1 = BitConverter.ToString(hashByte1);//将字节数组装换为字符串
string str2 = BitConverter.ToString(hashByte2);
if (str1 == str2)
{

//write

}
else
{

//write

}
}
}

判断两个文件是否相同

标签:tco   creat   string   字节   compute   文件   path   write   mod   

原文地址:https://www.cnblogs.com/liujiabao/p/10330871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!