D盘突然爆红,我还以为是我环境下多了,最后发现是steam删游戏是假删。。。。
|-----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 1 2 3 4 5 6 7
| Get-ChildItem -Directory | ForEach-Object { $sizeInBytes = (Get-ChildItem$_.FullName -Recurse | Measure-Object -Property Length -Sum).Sum $sizeInGB =$sizeInBytes / 1GB if ($sizeInGB -gt 1) { $_.FullName + " " +$sizeInGB.ToString("F2") + " GB" } }
|