- [ Windows ][Windows] 폴더별 용량 확인2024-11-29 17:28:22프로그램을 설치하지 않고, 명령어를 통해 폴더 용량 계산이 가능하다. 1. Windows PowerShell(관리자) 를 실행 2. cd \ 실행 후 아래 코드를 실행시켜준다.$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]::Roun..
- [ Windows ]cmd 창 지우기2020-12-18 07:12:24cls 명령으로 가능.(대소문자 상관없음)