Creé una variable $check
para buscar archivos según ciertas condiciones. El código se ve así:
$day = (get-date).day
$year = (get-date).year
$check = (Get-ChildItem |
where-object {$_.LastWriteTime.Day -eq "$day"} |
Where-Object {$_.LastWriteTime.Year -eq "$year"} |
Sort-Object LastWriteTime |
Format-Table LastWriteTime, Name, Length)
¿Hay alguna manera de hacerlo de forma más compacta? Por ejemplo, utilice menos variables, etc.
Respuesta1
$check=(ls|?{$_.LastWriteTime.Day -eq "$day"}|select LastWriteTime|ft LastWriteTime, Name, Length -Auto)