To find the time stamps history of the files within the sub-folders

Hi - Can anyone help me to get the shell script for the below scenario

I need to find out the time stamps history for the files residing within the subfolders. Ex..

Let say I got directory structure like

/home/project1/ -- Fixed directory

Now within the project there are many directories and sub-directories having 100's of files like below

/home/project1/Dir_name1/folder1/<Number of files>
/home/project1/Dir_name1/folder2/<Number of files>
/home/project1/Dir_name1/folder3/<Number of files>
/home/project1/Dir_name2/folder1/<Number of files>

All the files having different date time stamps ex.. 1 Jul 2011, 3 Jul 2011, 7 Jul 2011, 10Jul 2011

My requirement is to get the history of the date time stamp and latest time stamp in the format like below

Dir_name1 folder1 1 Jul 2011
Dir_name1 folder2 3 Jul 2011
Dir_name1 folder3 7 Jul 2011
Dir_name2 folder1 10 Jul 2011

Could anyone help me on this would be great

 
find . -type d -ls | nawk '{printf("%s %s %s %s\n",$11,$8,$9,$10)}'