powershell 获取过期的文件
function funline($strin="hello")
{
$num=$strin.length
for($i=1;$i -le $num;$i++){$funline = $funline + "="}
Write-Host -ForegroundColor Yellow $strin
Write-Host -ForegroundColor DarkRed $funline
}
$folder="C:\Users\qliangliang.BOOK\Documents"
$date=get-date
$limit=3
$xfiles=$Null
Get-ChildItem -Path $folder -Force | ForEach-Object {
$newdate=($_.LastAccessTime).AddDays($limit)
$limitDate=New-TimeSpan -Start $date -End $newdate
if($limitDate -le 0)
{
$xfiles+=@{$_.Name=$_.LastAccessTime}
}
}
funline("the expired files art listed below")
$xfiles
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。