小白起航,需要批量解压文件,zipfile模块解压zip文件,顺利。但是rar麻烦不断,记录一下。
1.看了站内教程,安装rarfile模块,使用。
报错 rarfile.BadRarFile: Failed the read enough data: req=643012 got=52。
又查找教程,额,居然有多个方法。
第一种,添加unrar.exe到环境变量,没成功。
第二种,复制拷贝unrar.exe到项目目录下。咦,开始解压了,但是又报错rarfile.BadRarFile: Failed the read enough data: req=643012 got=52。
为什么这样?目前不知道,怎么办,试一下其他教程的unrar包
2.安装unrar,还要安装 unrar library,
网址:http://www.rarlab.com/rar/UnRARDLL.exe ,添加环境变量。
参考教程 https://www.cnblogs.com/zhuminghui/p/11699313.html?ivk_sa=1024320u
https://blog.csdn.net/ysy950803/article/details/52939708
终于都解压了。其他bug问题额以后再说吧。
# -*- coding:utf-8 -*-
from unrar import rarfile
import os
import zipfile
path=r'E:\2022-1-09'
# 解压删除
def file_name(file_dir):
for root, dirs, files in os.walk(file_dir):
for file in files:
if os.path.splitext(file)[1] == '.zip':
f=os.path.join(root, file)
zf=zipfile.ZipFile(f,'r')
zf.extractall(root)
print(file)
zf.close()
os.remove(f)
elif os.path.splitext(file)[1] == '.rar':
h=os.path.join(root, file)
rf = rarfile.RarFile(h,'r')
rf.extractall(root)
print(file)
os.remove(h)
# 查看是否有压缩文件
def isfile(path):
for root, dirs, files in os.walk(path):
for file in files:
if os.path.splitext(file)[1] == '.zip':
file_name(path)
isfile(path)
elif os.path.splitext(file)[1] == '.rar':
file_name(path)
isfile(path)
isfile(path)