Last active
September 7, 2017 01:27
-
-
Save liuxd/9f01071208df1e37e4fd to your computer and use it in GitHub Desktop.
[windows-cleaner.bat] Windows下自动删除指定文件夹的批处理脚本。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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