-----------------解压excelTemplate压缩包.bat-----------------------
@echo off
mode con cols=60 lines=25&color 0a
title 解压excelTemplate压缩包
::删除以存在的文件夹
forfiles /p "%cd%" -m *excelTemplate* /s /c "cmd /c rd /q /s @path"
::设置方法1的rar变量值
set "rar=C:\Program Files\WinRAR\WinRAR.exe"
::方法1:解压zip包 到 包自身文件夹名中
::"%rar%" x -ad -y *CCM*_excelTemplate_*.zip
::方法2:解压zip包 到 包自身文件夹名中(-ibck为后台执行)
start winrar x -ad -y -ibck *CCM*_excelTemplate_*.zip
exit