码迷,mamicode.com
首页 > 其他好文 > 详细

get_folder_size.ps1

时间:2017-06-08 23:51:14      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:container   value   sort   div   psi   contain   containe   get   -o   

 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

标签:container   value   sort   div   psi   contain   containe   get   -o   

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

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