LoginSignup
2
3

More than 5 years have passed since last update.

ディスク容量を調査するコマンドレット

Last updated at Posted at 2016-09-18

フォルダごと

ls -r C:\temp | 
? PSIsContainer |
% {
    $result = ls -r $_.FullName | ? Length | measure Length -sum
    [PSCustomObject]@{
        Name = $_.FullName
        MB = $result.sum / 10000000
    }
} |
ft -autosize

ファイルごと

ls -r C:\temp |
? { ! $_.PSIsContainer } |
select FullName,Length |
ft -autosize

ファイルに落とす場合は ft -autosizeConvertTo-CSV > FileName もしくは Export-CSV FileName に。

2
3
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3