标题: VBS为什么不能判断E盘是否存在? [打印本页]
作者: cq594769472 时间: 2009-11-15 13:13 标题: VBS为什么不能判断E盘是否存在?
- strComputer = "."
- const x=1073741824
- Set objWMIService = GetObject("winmgmts:\\" &
-
- strComputer & "\root\CIMV2")
- Set colItems = objWMIService.ExecQuery( _
- "SELECT * FROM Win32_LogicalDisk",,48)
- For Each objItem in colItems
- if (objItem.Caption=E) then
- msgbox "exist E"
- else
- msgbox "not exist E"
- end if
- Next
复制代码
作者: zqz0012005 时间: 2009-11-15 15:36
objItem.Caption=E
你定义E为变量了吗?普通字符串要加引号。比较时区分大小写。
E = "E:"
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |