使用forfile自动删除N天前的文件

目的:自动删除N天前的文件

环境:windows 平台

方法:使用下列命名,保存为任务计划或bat批处理

 

forfiles /p "D:\interface\tmp" /d -3 /c "cmd /c echo deleting @file ... && del /f @path" 



forfiles /p "D:\Proxy_Data\FileCenter" /s /m *.* /d -90 /c "cmd /c del /F /s /q  @path"

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(windows,服务器)