I need a command (like "dir") that lists all directories with their size. I need just a 1 level deepness but with the total size of a directory.
For example
>dirsize c:/mainfolder
subfolder1 15640
subfolder2 682310
subfolder3 283550
I need a command (like "dir") that lists all directories with their size. I need just a 1 level deepness but with the total size of a directory.
For example
>dirsize c:/mainfolder
subfolder1 15640
subfolder2 682310
subfolder3 283550
Use
diruse
from the Support Tools:or
du
from Sysinternals:Paste the following into a file in the parent directory named
getdirsize.bat
Then run the command below from the parent directory. Alternatively, you could install the GNU coreutils for Windows and substitute
du
forgetdirsize.bat
below. I'm currently on a Linux system so can't test -- you may need to tweak this a little.for /D %subdirs in (.*) do getdirsize.bat %subdirs