-
Notifications
You must be signed in to change notification settings - Fork 50
/
$9清理mod文件夹.bat
21 lines (21 loc) · 1.03 KB
/
$9清理mod文件夹.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off
chcp 65001
FOR /F "tokens=3* delims= " %%a in ('reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v "Personal"') do (set mydoc=%%a)
echo ----本批处理会清理mod文件夹,不需要则关闭窗口----
pause
echo ----本批处理会清理mod文件夹,不需要则关闭窗口----
pause
@echo on
del "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\!*.mod"
del "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\%%*.mod"
del "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\+*.mod"
del "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\-*.mod"
del "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\~*.mod"
del "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\ZChinese*.mod"
rmdir "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\_Inkitmod"
rmdir "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\_InkitSEL"
rmdir "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\_morechn"
rmdir "%mydoc%\Paradox Interactive\Hearts of Iron IV\mod\_betaPack"
@echo off
echo ----清理完成----
pause