Archive: Need help to copy files from one folder to another folder


Need help to copy files from one folder to another folder
Hai all,
I need to copy files from one folder to another folder. Say i am having folder $3\bin and i want all of its content to be copied to $3\temp i know that this can be achived through CopyFiles but i don't know how to use that exactly. Could anybody give me a example for the above problem.
With thanks, Eka S


Use:

CopyFiles"$3\bin\*.*""$3\temp"


Thank u very much deguix. I got it now.