提问人:Andrew G. Johnson 提问时间:1/23/2010 最后编辑:John SaundersAndrew G. Johnson 更新时间:3/2/2010 访问量:3354
VBScript 的 CopyFile 不起作用
VBScript's CopyFile not working
问:
我认为这可能与外部文件有关,但我收到错误,不知道为什么。代码如下。Path not found
<%
Dim fs
set fs = Server.CreateObject("Scripting.FileSystemObject")
fs.CopyFile "http://domain.com/file.xml","softvoyage.xml"
set fs = Nothing
%>DONE.
答:
3赞
egrunin
1/23/2010
#1
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赞
AnthonyWJones
1/24/2010
“本地光盘文件”或可通过 UNC 文件共享获得的文件。
1赞
Bryan
1/23/2010
#2
我不相信 CopyFile 方法可以从 http 源复制文件。我见过的唯一 source 参数示例是本地文件系统上的文件:
FileSystemObject.CopyFile "c:\srcFolder\srcFile.txt", "c:\destFolder\"
如果需要保存 http 请求中的数据,请查看 IXMLHTTPRequest 对象。
评论