Powershell 之批量获取文件大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 之批量获取文件大小相关的知识,希望对你有一定的参考价值。
$startFolder = "D:\" $colItems = (Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object) foreach ($i in $colItems) { $subFolderItems = (Get-ChildItem $i.FullName -recurse | Measure-Object -property length -sum) $FileSize="{0:N2}" -f ($subFolderItems.sum / 1GB) $Unit=‘GB‘ if($FileSize -lt 1) { $FileSize="{0:N2}" -f ($subFolderItems.sum / 1MB) $Unit=‘MB‘ } write-host $i.FullName ‘ -- ‘ $FileSize $Unit -fore green }
以上是关于Powershell 之批量获取文件大小的主要内容,如果未能解决你的问题,请参考以下文章
如何递归获取PowerShell中的所有文件和文件夹的大小,自定义输出
powershell PowerShell:获取与HP Print Driver DIFxAPI.dll问题有关的文件大小。