1. 經過使用md5字符串比較2個文件python
import hashlib def get_file_md5(filename): '''能夠比較兩個文件的md5值,來比較文件內容。未使用''' md5 = hashlib.md5() f = open(filename, 'rb') while True: b = f.read(8096) if not b: break md5.update(b) f.close() return md5.hexdigest()
python3spa
import filecmp # true if 2 files are the same result = filecmp.cmp(file1, file2)