ifstream获取二进制文件长度并比较内容


#include <fstream>
using namespace std;

bool FileCompare_Binary(const string file1, const string file2)
{
//File1
//
ifstream fin1(file1.c_str(), ios::binary);
fin1.exceptions ( ifstream::eofbit | ifstream::failbit | ifstream::badbit );

istream::pos_type current_pos1 = fin1.tellg();//记录下当前位置
fin1.seekg(0,ios_base::end);//移动到文件尾
istream::pos_type file_size1 = fin1.tellg();//取得当前位置的指针长度->即文件长度
fin1.seekg(current_pos1);//移动到原来的位置

BYTE* data1 = new BYTE[file_size1];
memset(data1, 0, file_size1);

fin1.read( reinterpret_cast<char*>(data1), file_size1 * sizeof(BYTE) );
fin1.close();

//File2
//
ifstream fin2(file2.c_str(), ios::binary);
fin2.exceptions ( ifstream::eofbit | ifstream::failbit | ifstream::badbit );

istream::pos_type current_pos2 = fin2.tellg();//记录下当前位置
fin2.seekg(0,ios_base::end);//移动到文件尾
istream::pos_type file_size2 = fin2.tellg();//取得当前位置的指针长度->即文件长度
fin2.seekg(current_pos2);//移动到原来的位置

BYTE* data2 = new BYTE[file_size2];
memset(data2, 0, file_size2);

fin2.read( reinterpret_cast<char*>(data2), file_size2 * sizeof(BYTE) );
fin2.close();

//
if (file_size1 != file_size2)
{
delete[] data1;
delete[] data2;
return false;
}
else
{
if (memcmp(data1, data2, file_size1) != 0)
{
delete[] data1;
delete[] data2;
return false;
}
}

delete[] data1;
delete[] data2;

return true;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值