Public Sub CopyFile()
Dim objFSO As Object
Const strFileNameAndPath As String = "C:\........"
Const strNewFileNameAndPath As String = "C:\...."
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.CopyFile strFileNameAndPath, strNewFileNameAndPath, Fase
End Sub