首页 > 其他 > 详细

get_folder_size.ps1

时间:2017-06-08 23:15:49      阅读:278      评论:0      收藏:0      [点我收藏+]
 function filesize ([string]$filepath)
{
    if ($filepath -eq $null)
    {
        throw "路径不能为空"
    }
    $hash_size=@{} 
    dir -Path $filepath |
    ForEach-Object -Process {
        if ($_.psiscontainer -eq $true)
        {
            $length = 0
            dir -Path $_.fullname -Recurse | ForEach-Object{
                $length += $_.Length
            }
            $l = $length/1MB
            [int]$FolderSIZE=" {0:n1}" -f $l
            $hash_size.($_.name)=$FolderSIZE
        }
    }
    $hash_size.GetEnumerator() | Sort-Object Value 
}
filesize -filepath ".\"

 

get_folder_size.ps1

原文:http://www.cnblogs.com/cm20121009/p/6965031.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!