https://stackoverflow.com/questions/39276248/creating-an-md5-hash-of-a-zipfile
pythonimport hashlib
def get_MD5(file_path):
chunk_size = 8192
h = hashlib.md5()
with open(file_path, 'rb') as f:
while True:
chunk = f.read(chunk_size) # 文件太大就需要chunk_size
if len(chunk):
h.update(chunk)
else:
break
return h.hexdigest()
print(get_MD5('./apptest.py'))
print(get_MD5('./test.zip'))
文件小的时候一句话就好:
pythonfile = "./cls94_20230515_V1.0.6.mnn"
# 打印md5
import hashlib
print(hashlib.md5(open(file, 'rb').read()).hexdigest())
本文作者:Dong
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!