Last active
November 23, 2021 12:58
-
-
Save jca02266/a1e1691bf44c92d213c91b0ed3681014 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Item * | % { | |
$folder = $_ | |
Write-Warning $folder | |
Get-ChildItem $folder -Recurse | Measure-Object -Sum Length | Select-Object @{Name="Folder"; E={$folder.FullName}},Count,Sum | |
# [GC]::Collect() | |
} | Sort-Object Sum -Desc | Format-Table -AutoSize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
試したバージョン