set reportPath=D:\AutomationReport cd /d %reportPath% for /f "tokens=*" %%a in (‘dir /b /ad /s^|sort /r‘) do rd "%%a" 2>nul forfiles /p %reportPath% /s /m *.xml /d -7 /c "cmd /c del /f @path">nul 2>nul forfiles /p %reportPath% /s /m *.html /d -7 /c "cmd /c del /f @path">nul 2>nul forfiles /p %reportPath% /s /m *.pdf /d -7 /c "cmd /c del /f @path">nul 2>nul forfiles /p %reportPath% /s /m *.png /d -7 /c "cmd /c del /f @path">nul 2>nul for /f "tokens=*" %%a in (‘dir /b /ad /s^|sort /r‘) do rd "%%a" 2>nul
时间: 2024-10-08 05:21:01