search for date of modification

hi member.
i want to know all file in the system
which the last date of modification = 14-06-2010
for example
what can i do

find command can help you

option of your interest : -mmin and -mtime

thanks for your command
i found option -mtime
but i didn't found option -mmin

root # find . -mtime 0 

the got the result files which has the last date of modification is today

that is very good

did you know if i want to list files which is the last of modification is
withing the last 50 day
how can i do that

Also, some versions of "find" support -newerXY:

E.g.:

find / -name "*.*" ! -newermt 2010-06-15 -newermt 2010-06-14 -print
find / -type f -name "thefilenames" -mtime -50 -ls 

this will list all those files modified after 50th day from today.