python获取文件MD5值

在比较两个文件夹内的两个压缩包是否相同,可以采用判断两个压缩包的MD5是否相等。

MD5也是有可能会判断失误的,了解一下MD5碰撞算法··············

python获取文件MD5:

import os
import hashlib

def get_md5(filename):
    if not os.path.isfile(filename):
        print(filename+ "is not File")
        return None
    myhash = hashlib.md5()
    with open(filename, "rb") as f:
        while True:
            value = f.read(8096)
            if not value:
                break
            myhash.update(value)
    return myhash.hexdigest()

 

你可能感兴趣的:(python)