You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
binary comparison
About this tag
Binary comparison is a method used to verify file integrity by comparing two files byte by byte. In Windows, the fc /b command performs a binary comparison, revealing differences between files even if they have the same size and dates. This technique is useful for identifying corruption in large files, such as those over 2 GB, where a backup copy may have been affected by a faulty copy operation or defective media. Users often seek ways to determine which file is the valid one, exploring options like CRC32 hashes, Alternate Data Streams, or NTFS cluster checks. However, binary comparison itself does not indicate which file is correct; it only highlights discrepancies.
Assume I have a certain huge (> 2 GB) file and a second backup version of it on an external hard disk.
Both have exactly the same size and dates.
However when I compare them binary at the cmdprompt simplified with
fc /b D:\myfile123.enc H:\myfile123.enc
Then there are somewhere differences...