Created
October 20, 2017 21:13
-
-
Save nkundu/4f1fae935ffa51d148df1c566e33700c to your computer and use it in GitHub Desktop.
Recursively find large files
This file contains 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 . -Filter *.whatev -Recurse | Where-Object {$_.length/1MB -gt 50} | select fullname,@{n=”Size MB”;e={$_.length/1GB}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment