Tom Ogilvy wrote...
FC doesn't do that, but if your using vb or Excel VBA, you can use low level
file io to open each and compare at byte level.
http://support.microsoft.com/default.aspx?scid=kb;en-us;151335
Working with Binary Access Files
It would be a lot easier to automate the check than to use hex editors.
....
Maybe, but VB[A] isn't as easy to use for low-level file I/O as some
scripting languages. Unless the files are HUGE, it'd be easier to do
this in, say, Perl by loading both files in their entirety into
separate variables, then indexing these 'string' variables by byte or
word position. Easier and faster than using VB[A] binary file I/O with
byte record length.
Then again, there's always the venrable DEBUG.COM program, still
included in Windows XP. One could use separate instances in separate
console windows to display binary dumps between specific byte offsets
within the files. E.g.,
C:\test> debug somefile.bin
-d 326 327
13F8:0320 4B 87 K.
-q
C:\test>
And since DEBUG.COM accomodates I/O redirection, this could be
scripted.