Powershell tips - Filter files modified the last n days
I wanted to list files modified the last n days. Here is a filter function i wrote to help me.
1 function FilterLast([int] $nDays)
2 {
3 begin {
4 $DateToCompare = (Get-date).AddDays(-1 * $nDays)
5 }
6
[...]