You did not mention which timestamp - last modification time, last acces time or last creation time. I will assume last modification time.
Here is the script. It is written in biterscripting. It will copy files modified after a certain time stamp from folder A to B.
Code:
# Get a list of all files whose time stamp is after 20090418.
var str filelist ; find -n "*" "folder A" ($fmtime > "20090418") > $filelist
while ($filelist <> "")
do
# Get the next file.
var str file ; lex "1" $filelist > $file
# Copy file to folder B.
system copy $file "folder B"
done The above script will copy all files modified after Apr 18, 2009.
Copy the above script into file C:/X.txt. Start biterscripting and call the script as follows.
That's it. (Use correct values for folder A, folder B and 20090418, which is Apr 18, 2009.)
You can download biterscripting free. Just follow installation instructions at
http://www.biterscripting.com/install.html .
Sen