programming-examples/asp/More_Code_Snippets/Move a file using the MoveFile method.asp

4 lines
115 B
Plaintext
Raw Normal View History

2019-11-18 14:25:58 +01:00
<%
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.MoveFile "d:\test.html" , "d:\newfile.html"
%>