My mission is to compare a list of hundreds of files in Windows. In each comparison I have to compare a pair of files. The files could be binaries or text files (all kinds)
I'm looking for the fastest time to run this. I have to check if the content is the same or not (I have nothing to do with the content itself - I have to report ==
or !=
).
What could be the fastest way to do so? fc.exe
? something else?
If fc.exe
is the answer, are there any parameters that should accelerate response time?
I'd prefer to use an EXE that's part of standard Windows installation (but it's not a must).
THANK YOU