command to list files with path & date in a folder

Hi,

I need command to display files with full path and date of files where are generated at every 5hrs in a folder.

eg:
/u01/app/test/orjthsd_1_1 Sun May 10 19:03:26 2009
/u01/app/test/weoiusd_1_1 Sun May 10 21:00:26 2009

thanks
saha

Use

root@sys30 # find /global/app/install/VOIP12 -type f -exec ls -l {} \;

The you can use awk and sed for further editing

find <full_path_of_folder> -type f -printf "%p %a\n"

tyler_durden

thanks for the commands.
i have just modified it according to the requirement

find <full_path_of_folder> -type f -printf "%p %t\n"