win10使用PowerShell统计所有文件夹大小!

发布于:2024-08-13 所属分类:记录 作者:刘印同学

$folderPath = "D:\"

Get-ChildItem -Directory $folderPath | ForEach-Object {
    $size = (Get-ChildItem -Recurse -Force $_.FullName | Measure-Object -Property Length -Sum).Sum / 1GB
    [PSCustomObject]@{
        FolderName = $_.Name
        SizeGB = "{0:N2}" -f $size
    }
} | Format-Table -AutoSize

folderPatch 为你要统计的目标文件夹,会统计目标文件夹下所有子文件夹的大小,并且按照GB显示。

友情提示

如有需求,请通过左侧的QQ或者邮箱与我联系!

Copyright Your WebSite.Some Rights Reserved. Powered By Z-BlogPHP