欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

rar压缩软件哪个好用(安卓rar解压工具使用步骤)

程序员文章站 2024-03-27 14:35:10
一、前言本文实现rar批量解压的功能,通过python脚本调用winrar.exe解压文件时似乎不会再有广告框弹出。二、实现通过python调用winrar.exe程序实现rar文件的批量解压,代码如...

一、前言

本文实现rar批量解压的功能,通过python脚本调用winrar.exe解压文件时似乎不会再有广告框弹出。

二、实现

通过python调用winrar.exe程序实现rar文件的批量解压,代码如下:

import argparse
import os

class rarextractor:
    def __init__(self, in_dir="./", out_dir="./", pwds=none, exe=none):
        self.in_dir = in_dir
        self.out_dir = out_dir
        self.pwds = pwds if pwds else ['1234']
        self.exe = '"%s"' % exe if exe else '"c:program fileswinrarwinrar.exe"'

    def extract_files(self, pwds, file_path, dst):
        if not os.path.exists(dst):
            os.mkdir(dst)

        if os.path.isdir(dst) and os.path.isfile(file_path):
            try:
                for pwd in pwds:
                    extract_cmd = r'%s x -y -p%s %s %s' % (self.exe, pwd, file_path, dst)
                    if os.system(extract_cmd) == 0:
                        print("extract %s ok." % file_path)
                        return 0
                    else:
                        print("extract %s failed." % file_path)
                        return -1
            except runtimeerror:
                print("error")
                return -1
        else:
            print('file not exist')
            return -1

    def extract_all_rar(self):
        for root, dirs, files in os.walk(self.in_dir):
            for f in files:
                (filename, ext) = os.path.splitext(f)
                if ext == '.rar':
                    file_path = os.path.join(root, f)
                    print(file_path)
                    self.extract_files(self.pwds, file_path, os.path.join(self.out_dir, filename))

def _parse_options():
    parser = argparse.argumentparser()
    parser.add_argument("--in_dir", action="store", dest="in_dir", required=true, help="rar files dir")
    parser.add_argument("--out_dir", action="store", dest="out_dir", required=false, help="extracted file dir")
    parser.add_argument("--pwds", nargs='+', action="store", dest="pwds", required=false,
                        help="password list to extract rar: --pwds 1111 2222 3333")
    parser.add_argument("--exe", action="store", dest="exe", required=false, help="rar exe install path")
    return parser.parse_args()

if __name__ == '__main__':
    options = _parse_options()
    extractor = rarextractor(options.in_dir, options.out_dir, options.pwds, options.exe)
    extractor.extract_all_rar()

需要传入的参数为:

  • –in_dir rar文件所在目录,默认是当前目录
  • –out_dir 指定解压后输出的目录,默认是当前目录
  • –pwds 如果rar是加密的,则需要指定解压密码,可以指定多个密码,以空格隔开
  • –exe 指定winrar.exe所在的目录,默认是”c:program fileswinrarwinrar.exe”

三、测试

在目录d:rar_test下新建3个txt文件,使用rar加密压缩,密码为1024、2048和4096。

通过以下命令测试:

python rar_extractor.py --in_dir d:rar_test --out_dir d:rar_test --pwds 1024 2048 4096 --exe "c:program fileswinrarwinrar.exe"
rar压缩软件哪个好用(安卓rar解压工具使用步骤)