欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vbs判读盘符被双击的脚本

程序员文章站 2022-08-26 08:55:31
复制代码 代码如下:do while true  set wshshell = wscript.createob...

复制代码 代码如下:

do while true 
set wshshell = wscript.createobject("wscript.shell") 
if wshshell.appactivate("d:\") then 
msgbox "ok" 
wscript.quit 
end if 
loop 

试都不要试,就知道这段代码是错误的。因为wshshell.appactivate考虑的是窗体的caption中包含的字符或字符串,你用wshshell.appactivate("d:\")这个,就是说窗体caption里要包含"d:\"这个字符串。可你打开d盘看看,是这样的吗?都是“本地磁盘(d:)”。如果有卷标,那更说不准。所以应该写成wshshell.appactivate("(d:)"),考虑到内存节约的问题,应该这样写:

set wshshell = wscript.createobject("wscript.shell")
do 
if wshshell.appactivate("(d:)") then
msgbox "ok"
wscript.quit
end if
loop