def GetFileMd5(filename):
if not os.path.isfile(filename):
return
myhash = hashlib.md5()
f = file(filename,'rb')
while True:
b = f.read(8096)
if not b :
break
myhash.update(b)
f.close()
return myhash.hexdigest()
相关文章
- 12-24python利用ConfigParser读写配置文件
- 12-24python模块之ConfigParser: 用python解析配置文件
- 12-24Python3 统计文件夹下文件数量
- 12-24python – Wand将pdf转换为jpeg并将页面存储在类文件对象中
- 12-24如何使用python以编程方式计算存档中的文件数
- 12-24错误Python子进程调用复制文件.没有文件,失败,但是返回1.为什么?
- 12-24python使用ffmpeg合成文件
- 12-24python-如何为子进程提供密码并同时获取stdout
- 12-24python-subprocess.Popen,从子进程中获取变量(子)
- 12-24无法在python3中获取子进程返回代码