中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
作者:
标题: 求助. vbs多项判断出错! 上一主题 | 下一主题
ajon911
初级用户





积分 49
发帖 24
注册 2007-12-3
状态 离线
『楼 主』:  求助. vbs多项判断出错!

判断网络文件是否存在出错!
以下vbs都报告"不存在",如何让判断正确跳转执行?(正确应该报告"存在"的,如果把用于判断"d:\123.txt"文件修改的部分去掉就能正确报告文件"存在")

On Error Resume Next
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile("d:\123.txt")
md =DateValue(f.DateLastModified)
nd=date
if md<>nd then
url="http://www.baidu.com/img/baidu_logo.gif"
Set xmlHTTP=createobject("Microsoft.XMLHTTP")
xmlhttp.open "GET", URL, false
xmlhttp.send
if err.number <> 0 then
flagText = "google.com"
else
flagText = left(xmlhttp.responseText, 1703)
set regex = new RegExp
regEx.Global = True
regex.pattern =  "^\s*"
flagText = regex.replace(flagText, "")
regex.pattern =  "^<.*>"
flagText = regex.replace(flagText, "google.com")
flagText = left(flagText, 10)
end if
If flagText <> "google.com" Then
msgbox "存在"
else
msgbox "不存在"
end if
else
msgbox "今天修改过"
end if

2009-9-15 00:17
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
ywjco
初级用户





积分 31
发帖 17
注册 2007-10-31
状态 离线
『第 2 楼』:  

试过你的代码,没有问题。只是要先建立“d:\123.txt”这个文件。
***************************************

On Error Resume Next
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile("d:\123.txt")
md=DateValue(f.DateLastModified)
nd=date
   
if md<>nd then
        url="http://www.baidu.com/img/baidu_logo.gif"
        Set xmlHTTP=createobject("Microsoft.XMLHTTP")
        xmlhttp.open "GET", URL, false
        xmlhttp.send
        if err.number <> 0 then
                flagText = "google.com"
        else
                flagText = left(xmlhttp.responseText, 1703)
                set regex = new RegExp
                regEx.Global = True
                regex.pattern =  "^\s*"
                flagText = regex.replace(flagText, "")
                regex.pattern =  "^<.*>"
                flagText = regex.replace(flagText, "google.com")
                flagText = left(flagText, 10)
        end if
   
        If flagText <> "google.com" Then
                msgbox "存在"
        else
                msgbox "不存在"
        end if
else
        msgbox "今天修改过"
end if

********************************************
最后,还应加上两行:
Set fso = Nothing
Set f =Nothing

2009-9-15 13:32
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: