Typical approaches recommend reading the binary via FileStream and comparing it byte-by-byte.
- Would a checksum comparison such as CRC be faster?
- Are there any .NET libraries that can generate a checksum for a file?
|
4
|
Typical approaches recommend reading the binary via FileStream and comparing it byte-by-byte.
|
|||
|
|
|
A checksum comparison will be most likely be slower than a byte-by-byte comparison. In order to generate a checksum, you'll need to load each byte of the file, and perform processing on it. You'll then have to do this on the second file. The processing will almost definitely be slower than the comparison check. As for generating a checksum: You can do this easily with the cryptography classes. Here's a short example of generating an MD5 checksum with C#. However, a checksum may be faster and make more sense if you can pre-compute the checksum of the "test" or "base" case. If you have an existing file, and you're checking to see if a new file is the same as the existing one, pre-computing the checksum on your "existing" file would mean only needing to do the DiskIO one time, on the new file. This would likely be faster than a byte-by-byte comparison. |
||
|
|
|
|
The slowest possible method is to compare two files byte by byte. The fastest I've been able to come up with is a similar comparison, but instead of one byte at a time, you would use an array of bytes sized to Int64, and then compare the resulting numbers. Here's what I came up with:
In my testing, I was able to see this outperform a straightforward ReadByte() scenario by almost 3:1. Averaged over 1000 runs, I got this method at 1063ms, and the method below (straightforward byte by byte comparison) at 3031ms. Hashing always came back sub-second at around an average of 865ms. This testing was with an ~100MB video file. Here's the ReadByte and hashing methods I used, for comparison purposes:
|
|||
|
|
|
|
The only thing that might make a checksum comparison slightly faster than a byte-by-byte comparison is the fact that you are reading one file at a time, somewhat reducing the seek time for the disk head. That slight gain may however very well be eaten up by the added time of calculating the hash. Also, a checksum comparison of course only has any chance of being faster if the files are identical. If they are not, a byte-by-byte comparison would end at the first difference, making it a lot faster. You should also consider that a hash code comparison only tells you that it's very likely that the files are identical. To be 100% certain you need to do a byte-by-byte comparison. If the hash code for example is 32 bits, you are about 99,99999998% certain that the files are identical if the hash codes match. That is close to 100%, but if you truly need 100% certainty, that's not it. |
||
|
|
|
|
In addition to Reed Copsey's answer:
For example, if the two files are of different length then you know they cannot be identical, and you don't even have to compare their actual content. |
||||||
|
|
|
If the files are not too big, you can use:
It will only be feasible to compare hashes if the hashes are useful to store. (Edited the code to something much cleaner.) |
||
|
|
|
|
Edit: This method would not work for comparing binary files! In .NET 4.0, the
Which means you could use:
|
||