import os
import subprocessdef Compress(input_fileName,output_file, intput_path,rar_path='C:/"Program Files"/WinRAR/WinRAR.exe'):""":param input_fileName: 需要压缩的文件/文件夹名,这里时名字如果时某个文件夹下的所有文件则直接写:input_fileName=".":param output_file: 压缩文件的输出路径及其压缩的文件名; 如 output_file ="d:/test/test.rar":param intput_path: 要压缩的文件夹路径信息:param rar_path: WinRar软件路径,默认 rar_path='C:/"Program Files"/WinRAR/WinRAR.exe'.注意路径和文件名中带空格的时候一定要多加一重引号!!"""cmd_command = r'%s a %s %s' % (rar_path, output_file, input_fileName)os.chdir(intput_path) # WinRaR切换工作目录result = os.system(cmd_command) # 执行压缩命令if result == 0:print('Successful Compress', input_fileName)else:print('FAILED Compress', input_fileName)# 替换为你的图像文件路径Compress("a_OK_14_.jpg","D:\AVI\FileTemp\a_OK_14_.rar", "D:\AVI\FileTemp",'C:/"Program Files"/WinRAR/WinRAR.exe')print(f"已将图像压缩到 {rar_file}")
簡單記錄一下Python使用WINRAR壓縮
後續再更新下其他做法
原博主
python WinRaR 进行文件压缩 - 李漫 - 博客园