02windows系统查看当前目录下文件夹大小 # 运行 powershell 复制下面命令执行 Get-ChildItem -Directory | ForEach-Object { $folder=$_ $totalSize= (Get-ChildItem -Path $folder.FullName -Recurse | Measure-Object -Property Length -Sum).Sum $sizeInGB="{0:N2}"-f ($totalSize /1GB) $sizeInMB="{...