2020年12月18日

使用Python脚本计算文件MD5值

摘要: 为了方便在Windows环境计算文件MD5值。 使用Python完成一个脚本,实现md5sum功能。 代码: import os import sys import hashlib def md5sum(file): if not os.path.exists(file): return "md5s 阅读全文

posted @ 2020-12-18 15:05 Zhangwill 阅读(1720) 评论(0) 推荐(0) 编辑

导航