bat 定时脚本循环删除文件,现在要求每隔10分钟,循环的删除指定目录下的文件。
脚本:文章源自陈学虎-https://chenxuehu.com/article/2020/06/7604.html
@echo off :loop del /f /s /q D:\1\*.* del /f /s /q D:\2\*.* del /f /s /q D:\3\*.* del /f /s /q D:\4\*.* del /f /s /q D:\5\*.* del /f /s /q D:\6\*.* echo Now: %date:~0,10% %time% ,waiting next ... @ping 127.0.0.1 -n 600 >nul goto loop
文章源自陈学虎-https://chenxuehu.com/article/2020/06/7604.html 文章源自陈学虎-https://chenxuehu.com/article/2020/06/7604.html
评论