Created
September 3, 2017 18:31
-
-
Save JekRock/8723900d96deaf7a6d9890a39c039390 to your computer and use it in GitHub Desktop.
Get list of files modified after date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem -Path . -Recurse| ? {$_.LastWriteTime -gt (Get-Date).AddDays(-4)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment