Subfolder size

Soldato
Joined
4 Sep 2005
Posts
12,830
Location
London
Does anyone know how I can output the sizes of subfolders to a text document or excel spreadsheet?

Had a quick google but all I can find is random shareware programs. I'm sure there's a way to do it with command prompt?

Cheers
 
If you want to do it from the command line, try this

e.g du -c -v ["d:\path\base folder"] >report.csv

This will give you a CSV file you can open in Excel (note that the file & directory sizes are in kilobytes).
 
Back
Top Bottom