[powershell]统计目录大小

Write-Host DU 1.0 - 统计目录大小的脚本,作用和linux的du类似。`n
$args = "D:/software"
if (!$args)
{write-host "du 绝对目录名,如:`ndu.ps1 d:/mp3"}
elseif (!(Test-Path $args))
{write-host "错误:找不到目标目录名!"}
else
# 我在前人基础上整理,简化了不必要的功能,效果不错。个人感觉比sysinternals的du.exe好。
{
$b=Get-ChildItem $args -Recurse | Measure-Object -property length -sum
write-host "----【$args -- ",("{0:N2}" -f ($b.sum / 1MB)),"MB】----"
# 2010-8-15日出炉
$a=Get-ChildItem $args | Where-Object {$_.PsIsContainer -eq $true}
foreach ($i in $a)
{
$subFolderItems = (Get-ChildItem $i.FullName -Recurse  | Measure-Object -property length -sum)
$i.FullName + " -- " + "{0:N2}" -f ($subFolderItems.sum / 1MB) + " MB"
}
}
pause

 

posted @ 2013-09-23 10:42  cnsealine  阅读(4285)  评论(0编辑  收藏  举报