find files modified more than a day

Hi All,
I am using the below command to check the files modified within last 24hours

 find /home/karthik -mtime -1 -type f -exec ls -l {} \;  

What parameter do i need to add in the above command to check the files modified in last 2 or 3 days

Kindly let me know if any other alternative commands for the same too.

Thanks with anticipation

-mtime -1 gives you files modified within last 24 hrs.. so change -1 to -2 or -3.. you will get what you needed..

Hi There,

It works & Thanks !!!