find /dir/ -type d will list all the dir and sub dir.

To list file older than a yr:

find /db/rceireg1/ -mtime +365 -ls

+365 above 365 from current day


Many Thanks!