hpw422初始版本

This commit is contained in:
xushaoxiang
2026-06-04 09:13:55 +08:00
commit 982da04a92
3279 changed files with 860351 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
setlocal enabledelayedexpansion
set "folderPath=.\" :: 替换为你的文件夹路径
for /d /r "%folderPath%" %%D in (Objects) do (
echo Deleting folder: %%D
rmdir /s /q "%%D"
)
for /d /r "%folderPath%" %%D in (Listings) do (
echo Deleting folder: %%D
rmdir /s /q "%%D"
)