python 批量解压zip,rar压缩文件

小白起航,需要批量解压文件,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)   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值