Dim fs As Object
Dim oldPath As String, newPath As String
oldPath = "C:\Documents and Settings\user\My Documents\filename.xls"
newPath = "C:\Documents and Settings\user\My Documents\Misc\filename.xls"
Set fs = CreateObject("Scripting.FileSystemObject")
fs.CopyFile oldPath , newPath
Set fs = Nothing