Skip to content

Instantly share code, notes, and snippets.

@aburok
Created March 25, 2015 09:54
Show Gist options
  • Save aburok/c366d7cdb319b3a6252a to your computer and use it in GitHub Desktop.
Save aburok/c366d7cdb319b3a6252a to your computer and use it in GitHub Desktop.
Get Directory Size
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