Well a cron job to move the files and rename every 10 minutes would be very easy.
Code:
#!/bin/bash
timestamp="$(date +%m.%d.%Y_%H.%M.%S_)"
cd /path/to/
for i in *.*
do
mv /path/to/* /newpath/to/${timestamp}${i}
done
exit
This would take a file located /path/to/
and would move it to /newpath/to/
and would rename it to something like.
04.24.2007_14.32.35_file.rar
The first set of digits being the date. .. the next set being the Hour/Min/Seconds .... the last part being the original filename being moved.
I didn't run it, but it should work..... just change the /path/to and /newpath/to parts......