码迷,mamicode.com
首页 > Windows程序 > 详细

powershell获取windows子文件夹的大小

时间:2018-11-21 16:07:58      阅读:854      评论:0      收藏:0      [点我收藏+]

标签:obj   pre   rop   start   style   write   size   file   containe   

 1 $startFolder = "E:\Migration\"
 2 $colItems = (Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object)
 3 foreach ($i in $colItems)
 4 {
 5  $subFolderItems = (Get-ChildItem $i.FullName -recurse | Measure-Object -property length -sum)
 6  $FileSize="{0:N2}" -f ($subFolderItems.sum / 1GB)
 7  $Unit=‘GB‘
 8  if($FileSize -lt 1)
 9  {
10   $FileSize="{0:N2}" -f ($subFolderItems.sum / 1MB)
11   $Unit=‘MB‘
12  }
13  write-host $i.FullName ‘ -- ‘ $FileSize $Unit -fore green
14 }


计算速度很快,只需修改$startFolder变量即可。

powershell获取windows子文件夹的大小

标签:obj   pre   rop   start   style   write   size   file   containe   

原文地址:https://www.cnblogs.com/20e8/p/9994212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!