23 May 2013 at 09:40 #1 benjo benjo 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
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
24 May 2013 at 15:31 #2 Tim2100 Tim2100 Associate Joined 25 Jul 2012 Posts 84 I use windirstat. Very handy, not sure about output though
24 May 2013 at 16:00 #3 CaptainCrash CaptainCrash Associate Joined 17 Sep 2008 Posts 1,750 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).
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).