码迷,mamicode.com
首页 > 编程语言 > 详细

python解压zip文件

时间:2021-06-07 20:42:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:file   dir   mkdir   ret   unzip   exists   for   rac   文件   

@staticmethod
def unzip_file(failed_file):
zip_file = zipfile.ZipFile(failed_file)
print(zip_file)
if os.path.isdir(failed_file[0:-20]):
pass
else:
os.mkdir(failed_file[0:-20])
for names in zip_file.namelist(): # 解压
zip_file.extract(names, failed_file[0:-20])
zip_file.close()
if os.path.exists(failed_file): # 删除zip文件
os.remove(failed_file)
# print(failed_file[0:-20], ‘解压成功‘)

return failed_file[0:-20]

python解压zip文件

标签:file   dir   mkdir   ret   unzip   exists   for   rac   文件   

原文地址:https://www.cnblogs.com/tester-yu/p/14858517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!