QQZone_AutoDownload_Album
QQZone_AutoDownload_Album copied to clipboard
图片命名问题
如果相册内图片文件名一样的话,下载下来就会进行覆盖
显示当前图片已存在
if os.path.exists(fileName+'.jpg'): print("图片已存在,增加时间戳防止文件未下载") fileName = fileName + "_" + str(int(time.time())) print("图片更名为:"+fileName+'.jpg')
最好是增加随机数,要不然会导致同名文件不被下载。当然如果精确。可以确定文件大小是否一致。或者验证MD5后在确定文件是否保存。