Answers:
给定的答案只会删除文件(这当然是帖子标题),但这是一些代码,它将首先删除所有早于15天的文件,然后递归删除任何可能已保留的空目录背后。我的代码还使用该-Force
选项删除隐藏文件和只读文件。此外,我选择了作为OP是一个新的PowerShell不使用别名和可能不明白什么gci
,?
,%
,等都是。
$limit = (Get-Date).AddDays(-15)
$path = "C:\Some\Path"
# Delete files older than the $limit.
Get-ChildItem -Path $path -Recurse -Force | Where-Object { !$_.PSIsContainer -and $_.CreationTime -lt $limit } | Remove-Item -Force
# Delete any empty directories left behind after deleting the old files.
Get-ChildItem -Path $path -Recurse -Force | Where-Object { $_.PSIsContainer -and (Get-ChildItem -Path $_.FullName -Recurse -Force | Where-Object { !$_.PSIsContainer }) -eq $null } | Remove-Item -Force -Recurse
当然,如果要在实际删除文件/文件夹之前先查看将删除哪些文件/文件夹,则只需在两行末尾将-WhatIf
开关添加到Remove-Item
cmdlet调用中即可。
此处显示的代码与PowerShell v2.0兼容,但是我还在博客上将此代码和更快的PowerShell v3.0代码显示为方便的可重用功能。
只是简单地(PowerShell V5)
Get-ChildItem "C:\temp" -Recurse -File | Where CreationTime -lt (Get-Date).AddDays(-15) | Remove-Item -Force
另一种方法是从当前日期减去15天,然后CreationTime
与该值进行比较:
$root = 'C:\root\folder'
$limit = (Get-Date).AddDays(-15)
Get-ChildItem $root -Recurse | ? {
-not $_.PSIsContainer -and $_.CreationTime -lt $limit
} | Remove-Item
基本上,您遍历给定路径下的CreationTime
文件,从当前时间中减去找到的每个文件的文件,然后Days
与结果的属性进行比较。该-WhatIf
开关将告诉您在不实际删除文件的情况下将发生的情况(将删除哪些文件),请删除该开关以实际删除文件:
$old = 15
$now = Get-Date
Get-ChildItem $path -Recurse |
Where-Object {-not $_.PSIsContainer -and $now.Subtract($_.CreationTime).Days -gt $old } |
Remove-Item -WhatIf
试试这个:
dir C:\PURGE -recurse |
where { ((get-date)-$_.creationTime).days -gt 15 } |
remove-item -force
-recurse
一个太多了,不是吗?目录列表是递归的,删除项不应该包含子项,对吗?
Esperento57的脚本在早期的PowerShell版本中不起作用。此示例执行以下操作:
Get-ChildItem -Path "C:\temp" -Recurse -force -ErrorAction SilentlyContinue | where {($_.LastwriteTime -lt (Get-Date).AddDays(-15) ) -and (! $_.PSIsContainer)} | select name| Remove-Item -Verbose -Force -Recurse -ErrorAction SilentlyContinue
如果您有在Windows 10盒上面的例子中的问题,请尝试更换.CreationTime
用.LastwriteTime
。这对我有用。
dir C:\locationOfFiles -ErrorAction SilentlyContinue | Where { ((Get-Date)-$_.LastWriteTime).days -gt 15 } | Remove-Item -Force
LastwriteTime
与并不相同CreationTime
,LastwriteTime
每次修改文件时都会更新。
#----- Define parameters -----#
#----- Get current date ----#
$Now = Get-Date
$Days = "15" #----- define amount of days ----#
$Targetfolder = "C:\Logs" #----- define folder where files are located ----#
$Extension = "*.log" #----- define extension ----#
$Lastwrite = $Now.AddDays(-$Days)
#----- Get files based on lastwrite filter and specified folder ---#
$Files = Get-Children $Targetfolder -include $Extension -Recurse | where {$_.LastwriteTime -le "$Lastwrite"}
foreach ($File in $Files)
{
if ($File -ne $Null)
{
write-host "Deleting File $File" backgroundcolor "DarkRed"
Remove-item $File.Fullname | out-null
}
else
write-host "No more files to delete" -forgroundcolor "Green"
}
}
$Files
为空,则不会输入foreach语句。您应该将foreach放在if语句中。