*************************************************************
* Description: Windows batch command to delete files by time
* Date: 05:44 PM EST, 09/06/2017
*************************************************************
<1> Windows batch command for deleting files by last modified time:
|
|__ CMD> forfiles /P "" /M /D - /C "cmd /c Del @FILE"
|
|__ CMD> forfiles /P "C:\emeralit\logs" /M database_status_log_* /D -3 /C "cmd /c Del @FILE"
Your Comments