美文网首页
【随笔·技术】powershell文件大小的展示单位

【随笔·技术】powershell文件大小的展示单位

作者: 子寤 | 来源:发表于2017-07-27 05:23 被阅读19次

    转自stackoverflow的一位网友的回答

    function DisplayInBytes($num) 
    {
        $suffix = "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"
        $index = 0
        while ($num -gt 1kb) 
        {
            $num = $num / 1kb
            $index++
        } 
    
        "{0:N1} {1}" -f $num, $suffix[$index]
    }
    

    相关文章

      网友评论

          本文标题:【随笔·技术】powershell文件大小的展示单位

          本文链接:https://www.haomeiwen.com/subject/clmakxtx.html