Skip to content

Instantly share code, notes, and snippets.

@n-fukuju
Created January 18, 2014 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save n-fukuju/8487498 to your computer and use it in GitHub Desktop.
Save n-fukuju/8487498 to your computer and use it in GitHub Desktop.
PowerShellで、フォルダサイズを求める。 (PowerShell 2.0で確認)
# [int] カレントパスのフォルダサイズ
(Get-ChildItem -Recurse -Force | Measure-Object -Sum Length).Sum
# [string, int][] カレントパス配下に存在する各フォルダのサイズ
Get-ChildItem | Select-Object Name,@{name="Size";expression={(Get-ChildItem $_.FullName -Recurse -Force | Measure-Object Length -Sum).Sum}}
@kamei-hirohumi
Copy link

dir Z:\I04061 /s /a:-d > c:\temp\sizelist.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment