I am very new to this world but was looking for a method copy files. I have then noticed this code under the subject Rename a file using the Filesystemobject. I though that it may work with Copyfile aswell and guess what it does work very well. So for those who may want to know here is the code to copy a file using the FilesystemObject.
<%
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile "c:dummytest.txt", "c:dummytest2.txt"
%>