Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active September 7, 2017 01:27
Show Gist options
  • Save liuxd/9f01071208df1e37e4fd to your computer and use it in GitHub Desktop.
Save liuxd/9f01071208df1e37e4fd to your computer and use it in GitHub Desktop.
[windows-cleaner.bat] Windows下自动删除指定文件夹的批处理脚本。
@echo off
for /f %%i in (clear-list.txt) do (
echo 删除%%i
rd %%i
)
echo.
echo 操作完成!
echo.
set /p a=请按Enter键结束
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment