Depending on what you really want to do, it findprovides options -[acm]timefor finding files by available, created or modified dates along with -newerand -min. You can combine them with -execto copy, delete, or whatever you want to do. For instance:
find -maxdepth 1 -mtime +1 -type f -exec cp '{}' backup \;
1 backup (, backup).