You may have noticed that the FileSystemObject doesn't have a Rename method
anywhere in its object model. This does not, however, mean that you can't rename
a file. The answer lies in the realization that you can use the MoveFile method,
specifying two different file names in the same directory. A sample of this
technique is shown below:
<%
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.MoveFile "d:\dummytest.txt",
"d:\dummytest2.txt"
%>