Listing subdirectories and files

hi,
i want to display all subdirectory files with directory name.

I am using ls -Rl this will gives only filenames with long listing.

But i want the filename padded with directory name.

example :

-rw-r--r-- 1 sidfor sigbd 1713 May 24 09:33 /rmybgd/opt/var/cs_sh_reset_params.log

Thanks in advance. Your speedy reply is verymuch appriciated.

Use ls with the find command:

find /dir -exec ls -l {} \;

Regards