A simple Tkinter GUI application to verify file integrity using MD5 hashes listed in an md5.txt file.
- Select a folder containing files and an
md5.txtfile. - Displays which files match, mismatch, or are missing.
- Shows computed and expected hashes for mismatched files.
- Place an
md5.txtfile in the folder you want to check.- Each line should be:
<md5_hash> <filename>
- Each line should be:
- Run the application:
python md5_checker_app.py
- Click "Select Directory" and choose your folder.
- Python 3.7 or higher
- No external libraries needed (uses standard library and Tkinter)