Python 同步文件夹-以及对装饰器的理解
摘要:
import os import shutil import time import hashlib # MD5值 def getMD5(path): f=open(path,'rb') d5 = hashlib.md5() #生成一个hash的对象 with open(path,'rb') as 阅读全文
posted @ 2020-03-27 16:58 pu369com 阅读(203) 评论(0) 推荐(0) 编辑