출처: https://zeliard.tistory.com/entry/win10-11-check-capacity-of-each-folder
PS (Power Shell) 관리자 모드에서 실행
$unitFactor = 1MB
$unitLabel = "MB"
Get-ChildItem . -Directory | ForEach-Object {
$folderPath = $_.FullName
$folderSize = (Get-ChildItem -Path $folderPath -Recurse -File | Measure-Object -Property Length -Sum).Sum
[PSCustomObject]@{
FolderName = $_.Name
FolderSize = [Math]::Round($folderSize / $unitFactor, 2)
Unit = $unitLabel
}
} | Sort-Object FolderSize -Descending | Format-Table -AutoSize
'develop > windows' 카테고리의 다른 글
MHTML 저장 유의사항 (0) | 2011.03.09 |
---|---|
C# 클래스 라이브러리 동적 로딩을 위한 추가 내용 (0) | 2010.09.29 |
C#에서 클래스 라이브러리 동적 로딩 (0) | 2010.09.29 |
C# ActiveX 만들기 (0) | 2010.09.29 |
ActiveX 에서 다른 ActiveX를 생성할 때 주의점 (0) | 2010.07.29 |