Hi,
I'm trying to copy file from one folder to another folder call TESTING (which is empty). I got error method permission denied. Here's my testing asp page
Thank in advance
I'm trying to copy file from one folder to another folder call TESTING (which is empty). I got error method permission denied. Here's my testing asp page
Thank in advance
Code:
<html>
<head>
<title>Untitled</title>
</head>
<body>
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.CopyFile "c:\inetpub\[URL unfurl="true"]wwwroot\test.aspx",[/URL] "c:\inetpub\[URL unfurl="true"]wwwroot\testing\"[/URL]
set fs=nothing
%>
</body>
</html>