摘要: ``` import os import hashlib def get_md5(file): file = open(file,'rb') md5 = hashlib.md5(file.read()) file.close() md5_values = md5.hexdigest() return md5_values file_path = "G:\... 阅读全文
posted @ 2019-07-16 18:37 mrwuzs 阅读(934) 评论(0) 推荐(0)