解压缩RAR文件-Python

时间:2018-08-06 15:37:05

标签: python

我正在尝试解压缩文件夹,然后将RAR文件中的文件移动到其他文件夹。

尝试解压缩文件时遇到问题。这是我目前正在查看的内容。

import patoolib, os
file = 'C:\\mydocuments\RCExport.rar'
file_path = 'C:\\Users\my_folder'
patoolib.extract_archive(file, outdir= file_path)

运行第四行时,出现错误:

PatoolError: could not find an executable program to extract format rar; candidates are (rar,unrar,7z)

我不明白,因为我的文件路径中显然有一个rar文件。

感谢您的帮助。

0 个答案:

没有答案