-1

Hello I am new to batch file,

I am trying to create a batch file which can extract specific image file from a .RAR file, and rename the extracted file same as the .RAR file.

FYI: The process needs to be done on multiple RAR files in same folder.

Any help will be appriciated :) Thanks in Advance

4

1 に答える 1

1

多分これはあなたを助けるでしょう: あなたは基本的に最初に例えば WinRar の rar と unrar の場所を設定します:

設定 rar=%ProgramFiles%\WinRAR\RAR.exe

unrar=%programFiles%\WinRAR\UnRAR.exe を設定します

次に、次のように圧縮します。

「%rar%」「ドロップ位置」「ターゲット位置」

または次のように解凍します。

%unrar% e "ターゲットの場所"

ソース: http://batch.maxforum.org/2010/08/30/how-to-rar-unrar-via-batch/

于 2012-11-04T18:10:22.310 に答える