ID:181718
 
I'm looking for a small, free program that will compare two files and give me a list of bytes (and their locations) which vary between the two files. Can anyone recommend a program that does this?
I don't really use binary diff tools on Windows, but AptDiff seems to be okay: http://www.aptedit.com/
Foomer wrote:
I'm looking for a small, free program that will compare two files and give me a list of bytes (and their locations) which vary between the two files. Can anyone recommend a program that does this?

Windows comes with a file comparison utility you can use. Just run:

fc /b file1 file2

And it will tell you where the two differ.

Lummox JR