Home >  > 批量解压压缩包文件

批量解压压缩包文件

0

将C:Program FilesWinRAR下的Rar.exe和rarreg.key拷贝到一文件夹下,如d:articles下,再在其下编写一个批处理文件unpackall.cmd

FOR /r %%v IN (*.rar) DO rar.exe x -r -0+ -EP2 -y -inul -ibck "%%v" *.txt *.xls *.doc *.wps *.mht *.htm *.html e:txt -r -0+ -EP2

  双击后,它就会将d:articles下所有rar压缩包中的 *.txt、 *.xls、 *.doc、 *.wps、 *.mth、 *.htm、  *.html  e:txt文件夹下。
 
  小提示:
  FOR /r %%v IN (*.zip) DO rar.exe x -r -o+ -EP2 -y -inul -ibck "%%v" *.txt *.xls *.doc *.wps *.mht *.htm *.html e:txt -r -o+ -EP2
  则会将d:articles下所有zip压缩包中的*.txt *.xls *.doc *.wps *.mht *.htm *.html 文件解压到e:txt文件夹下。

相关推荐

本文暂无标签

发表评论

You must be logged in to post a comment.