programming-examples/asp/More_Code_Snippets/Move a file using the MoveFile method.asp
2019-11-18 14:25:58 +01:00

4 lines
115 B
Plaintext

<%
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.MoveFile "d:\test.html" , "d:\newfile.html"
%>