1. Windows是使用類unix的command工具去查看,使用du和sort來找到佔用空間最多的目錄
指令如下:
du -md 1 [directory Path] | sort -g -r
指令說明:
du:
-d N : Limit output to directories (and files with -a) of depth < N
-m : Sizes in megabytes
sort:
-g : General numerical sort
-n : Sort numbers
-r : Reverse sort order
2. Linux:
du -h --max-depth=1 [directory Path] | sort -g