Copy or Duplicate item to a different folder?

I cant find anywhere a term to copy a file from one folder to another.
Is this possible in applescript? I would like to be able to have it grab a file from one directory and copy it to a sperate directory…

Hi Corbin,

It is in the Finder’s Dictionary > Standard Suite > Duplicate:

An example:

set myFile to choose file with prompt "Choose file"
set myFolder to choose folder with prompt "Choose destination"
tell application "Finder"
	duplicate myFile to myFolder with replacing
end tell

Best wishes

John M