Windows ETC

윈도우는 별도 폴더별 용량을 확인하는 것이 번거로운데 유닉스처럼 툴을 이용해 한번에 많은 폴더의 용량을 확인 할 수 있습니다.


https://technet.microsoft.com/en-us/sysinternals/bb896651.aspx


Sysinternals 에서 du.exe를 다운로드 후 압출을 풀고 CMD에서 실행을 하면


D:\>du /?

Du v1.5 - report directory disk usage
Copyright (C) 2005-2013 Mark Russinovich
Sysinternals - www.sysinternals.com

usage: du [-c[t]] [-l <levels> | -n | -v] [-u] [-q] <directory>
   -c     Print output as CSV. Use -ct for tab delimiting.
   -l     Specify subdirectory depth of information (default is one level).
   -n     Do not recurse.
   -q     Quiet (no banner).
   -u     Count each instance of a hardlinked file.
   -v     Show size (in KB) of all subdirectories.

CSV output is formatted as:
Path,CurrentFileCount,CurrentFileSize,FileCount,DirectoryCount,DirectorySize


각종 옵션이 있는데 du.exe -v를 하면 간단하게 하위폴더 용량까지 다 표시하게 됩니다.