Files
hpw421/project/delete.bat
T
2026-06-04 09:13:55 +08:00

12 lines
291 B
Batchfile

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"
)