标题: [问题求助] 求段VBS代码判断文件是否存在并执行它 [打印本页]
作者: aiainue 时间: 2018-7-28 10:24 标题: 求段VBS代码判断文件是否存在并执行它
先判断C:\1.exe是否存在,存在执行1.exe,不存在C:\1.exe就直接退出!
作者: yhcfsr 时间: 2018-7-28 14:27
本帖最后由 yhcfsr 于 2018-7-28 14:34 编辑
- file="c:\123.exe"
- Set oFso = CreateObject("Scripting.FileSystemObject")
- Set oShell = CreateObject("WScript.Shell")
- If oFso.FileExists(file) Then oShell.Run(file)
复制代码
OR- on error resume next
- file="c:\123.exe"
- CreateObject("WScript.Shell").Run(file)
复制代码
作者: aiainue 时间: 2018-7-28 22:35
回复 2# yhcfsr
谢谢大佬···
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |