【書式】
File.Move destination
ファイルを、引数destinationに移動します。
FileオブジェクトのMoveメソッドは、FileSystemObjectオブジェクトのMoveFileメソッドと同じ働きをします。
Sub test70()
Dim FSO As Object
Set FSO = CreateObject("Scripting.FileSystemObject")
''C:\Work\Book1.xlsxをC:\Tmpフォルダに移動します
FSO.GetFile("C:\Work\Book1.xlsx").Move "C:\Tmp\"
Set FSO = Nothing
End Sub