6 lines
271 B
Batchfile
6 lines
271 B
Batchfile
@echo off
|
||
set SrcDir=C:\test
|
||
set DaysAgo=0 %日期自定义,此处代表0天前%
|
||
forfiles /p %SrcDir% /s /m udpseq* /c "cmd /c del /f /q /a @path"
|
||
forfiles /p %SrcDir% /s /m INFO_* /c "cmd /c del /f /q /a @path"
|
||
forfiles /p %SrcDir% /s /m quote.log.* /c "cmd /c del /f /q /a @path" |