For Winblows this looks interesting;
Disk Space Analyzer Software for Windows - FolderSizes
IDK but try this from a LINUX terminal
Code:
$ find . -type d | perl -nle'
map @_{/([^.]+?)$/}++, grep -f, glob "$_/*.*";
print "\t---> $_\n", join ", ", map "$_: $_{$_}", keys %_;
undef %_
'>>files.txt
sample output:
Quote:
...
---> ./Documents/meme-urls
pdf: 1, html: 1, txt: 2
---> ./Documents/meme-urls/quotes
txt: 4 ...
...
---> ./Documents/SEO/prolog
pl: 21, 7: 2, 5: 4, ps: 6, pdf: 6, html: 6
....
|