标签:for 递归 nbsp pytho shel highlight time date force
把以下命令保存为ps1脚本,添加到Windows计划任务中设定每天固定时间执行即可:
#delete logs in specify website, just save logs in eight days~ $TimeOutDays=8 $filePath="C:\public\" $allFiles=get-childitem -path $filePath foreach ($files in $allFiles) { $daypan=((get-date)-$files.lastwritetime).days if ($daypan -gt $TimeOutDays) { #$files.FullName remove-item $files.fullname -Recurse -force } }
参数说明:
-Recurse 表示递归,删除子文件和子文件夹
-Force 表示强制删除,不询问
标签:for 递归 nbsp pytho shel highlight time date force
原文地址:https://www.cnblogs.com/xzlive/p/9597613.html