I am able to list all the directories by
find ./ -type d
I attempted to list the contents of each directory and count the number of files i
THis could be another way to browse through the directory structures and provide depth results.
find . -type d | awk '{print "echo -n \""$0" \";ls -l "$0" | grep -v total | wc -l" }' | sh