@echo off
set WinRAR="C:\Program Files\WinRAR\WinRAR.exe"
for /r . %%a in (*.rar *.zip) do (
cd "%%~pa"
%WinRAR% x "%%a"
del "%%a"
)
@echo off
set WinRAR="C:\Program Files\WinRAR\WinRAR.exe"
for /r . %%a in (*.rar *.zip) do (
cd "%%~pa"
%WinRAR% x -ad -y "%%a"
del "%%a"
)
转载【https://blog.csdn.net/hahohehehe/article/details/103393802】
本文标题: | windows目录下所有压缩文件批量解压脚本 |
本文链接: (转载请附上本文链接) | https://vulsee.com/archives/vulsee_2021/0524_14458.html |