Con Powershell v2.0, quiero eliminar cualquier archivo anterior a X días:
$backups = Get-ChildItem -Path $Backuppath |
Where-Object {($_.lastwritetime -lt (Get-Date).addDays(-$DaysKeep)) -and (-not $_.PSIsContainer) -and ($_.Name -like "backup*")}
foreach ($file in $backups)
{
Remove-Item $file.FullName;
}
Sin embargo, cuando $ backups está vacío, obtengo: Remove-Item : Cannot bind argument to parameter 'Path' because it is null.
He intentado:
- Protegiendo el foreach con
if (!$backups)
- Protección del elemento de eliminación con
if (Test-Path $file -PathType Leaf)
- Protección del elemento de eliminación con
if ([IO.File]::Exists($file.FullName) -ne $true)
Ninguno de estos parece funcionar, ¿y si la forma recomendada de evitar que se ingrese un bucle foreach si la lista está vacía?