VBScript的CopyFile无法正常工作

时间:2010-01-22 19:52:06

标签: asp-classic vbscript filesystemobject

我认为它可能与外部文件有关,但我收到错误Path not found并且不知道原因。代码如下。

<%

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

%>DONE.

2 个答案:

答案 0 :(得分:3)

FileSystemObject仅适用于本地光盘文件。试试这个:

<%
    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 
%>

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

答案 1 :(得分:1)

我不相信CopyFile方法可以从http源复制文件。我见过的关于source参数的唯一例子是本地文件系统上的文件:

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

如果您需要保存来自http请求的数据,请查看IXMLHTTPRequest object