使用批处理文件提取.rar文件

时间:2014-07-03 18:33:02

标签: batch-file

我正在尝试创建一个使用WinRAR提取.rar文件的批处理文件 到C:\ Program Files \

请帮忙

我尝试了以下代码

set rar=%ProgramFiles%\WinRAR\RAR.exe

set unrar=%programFiles%\WinRAR\UnRAR.exe

然后你像这样压缩:

"%rar%" a "drop location" "target location"

或像这样解压缩:

%unrar% e "target location"

但我似乎没有看到一个显示目标rar文件所在位置的选项。请帮帮我。

1 个答案:

答案 0 :(得分:4)

查看此页面:https://cects.com/using-the-winrar-command-line-tools-in-windows/

基本上(取自该网站):

rar a -r yourfiles.rar *.txt c:\yourfolder压缩内容

unrar x c:\yourfile.rar *.gif c:\extractfolder\解压缩

* .txt和* .gif用于过滤文件类型,可以省略。

页面底部还链接到两个示例批处理文件。