move file

In the directory /tmp , there are some new files will be created to it by time to time , I want to mv the files that are created within 15 minutes to other direcory eg. /tmp/backup , could suggest what can I do ? thx

find /tmp -name '*.*' -cmin 15 -exec mv {} /tmp/backup \;

vino