I need to compare the contents of very large files. Speed of the program is important. I need 100% match.I read a lot of information but did not find the optimal solution. I haveam haveconsidering two choices and everyone has problemsboth problems.
- Compare whole file byte by byte - not fast enough for large files.
- File Comparison using Hashes - not 100% match the two files with the same hash.
What dowould you suggest? Maybe Maybe I can do something withcould make use of threads? MemoryMappedFile - can Could MemoryMappedFile be helpful?