There are very long threads on this, I've read all that I could find, they don't answer my question.
The following is the best I can find to get a nicely formatted du listing inside a folder:
du -hsc $(ls -A) | sort -h
However, it's not what I want exactly as I want it to filter out / not show files in the top folder. I just want to get a summary of the directories (including .* directories) without the clutter of individual files. I think I would need to modify the ls but don't know how?
Even better would be to do the above, and additionally show a line of just the combined size of all files that are in the top level of this folder to show alongside all of the subfolder totals if that's possible?