I think it may have something to do with the external file but I am getting the error Path not found and don't know why. Code below.

<%

Dim fs
set fs = Server.CreateObject("Scripting.FileSystemObject")
fs.CopyFile "http://domain.com/file.xml","softvoyage.xml"
set fs = Nothing

%>DONE.
link|improve this question

50% accept rate
feedback

3 Answers

up vote 3 down vote accepted

The FileSystemObject is made for local disc files ONLY. Try this:

<%
    url = "http://www.espn.com/main.html" 
    set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") 
    xmlhttp.open "GET", url, false 
    xmlhttp.send "" 
    Response.write xmlhttp.responseText 
    set xmlhttp = nothing 
%>

Found at http://classicasp.aspfaq.com/general/how-do-i-read-the-contents-of-a-remote-web-page.html

link|improve this answer
1  
"local disc files" or files available over a UNC file share. – AnthonyWJones Jan 23 '10 at 22:11
@Anthony: Yes, thanks. – egrunin Jan 23 '10 at 22:30
feedback

I don't believe the CopyFile method can copy files from http sources. The only examples i've ever seen for the source parameter are for files on the local file system:

FileSystemObject.CopyFile "c:\srcFolder\srcFile.txt", "c:\destFolder\"

If you need to save data from an http request, check out the IXMLHTTPRequest object.

link|improve this answer
feedback

Are you sure CopyFile can resolve that URL?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.