.iso 파일들의 크기 확인하기


  1. Get-ChildItem -Path d:\ -Filter *.iso -Recurse | Measure-Object -Property Length -Sum
  2. “{0:N2}” -f ((Get-ChildItem -Path d:\ -Recurse | Measure-Object -Property Length -Sum ).Sum/1MB) + ” MB”
  3. Function Get-Size
    {
    “{0:N2}” -f ((Get-ChildItem -Path d:\ -Recurse | Measure-Object -Property Length -Sum ).Sum/1MB) + ” MB”
    }

 

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s