Displaying Source Code(s)
|
|
--------------------------------------------------------------------------------
Copy File
--------------------------------------------------------------------------------
Description : Copys a file from one location to another using
WSH
<html>
<head>
</head>
<body>
<%
Dim wsh
Set wsh = CreateObject("WScript.Shell")
Response.Write wsh.run("cmd /c copy d:websitesjeffasmithcom
ead_text est.txt d:websitesjeffasmithcom
ead_text est3.txt")
Set wsh = Nothing
Response.Write "done"
%>
</body>
</html>
|
|
|