python中的unrar解压缩问题

时间:2018-07-31 02:32:15

标签: python python-3.x unzip

我是python学习的新手,我用python编写了一个解压缩文件py。但是代码只是执行了一个解压缩,第二个未执行,有人可以看看这个并向我解释吗?谢谢大家!

在此处输入代码

from unrar import rarfile
import os
from datetime import datetime
import time


def unzip():
    for file1 in os.walk(path1):
            unrarfile1 = rarfile.RarFile(path1_1)
            name_list1 = unrarfile1.namelist()
            for names1 in name_list1:
                if '.pkg' in names1:                   
                unrarfile1.extract(names1,path_a)

    for file2 in os.walk(path2):
            unrarfile2 = rarfile.RarFile(path2_1)
            name_list2 = unrarfile2.namelist()
            for names2 in name_list2:
                if '.pkg' in names2:
                    unrarfile2.extract(names2,path_b)


unzip()

0 个答案:

没有答案