Recursive directory listing without listing files

Does any one know how to get a recursive directory listing in long format (showing owner, group, permission etc) without listing the files contained in the directories.

The following command also shows the files but I only want to see the directories.

ls -lrtR *

Try find ./ -type d -ls

That worked. Thanks

ls -laR | grep ^d

This code also worked but the following one served my purpose:

find ./ -type d -ls

Thanks