Created
March 25, 2015 09:54
-
-
Save aburok/c366d7cdb319b3a6252a to your computer and use it in GitHub Desktop.
Get Directory Size
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 -Recurse | Measure-Object -Sum Length | |
OR | |
ls -r | measure -s Length |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment