[已解决]文件夹不存如何有个提示
本帖最后由 dnvplj 于 2015-2-20 23:28 编辑请问各位朋友,下面的代码中;该文件“不存在”如何添加一个提示(该文件不存在,请自查...),谢谢了。Opt("MustDeclareVars", 1)
Global $drive = DriveGetDrive("FIXED")
_Main()
Exit
Func _Main()
For $i = 1 To $drive
If FileExists($drive[$i] & "\Soft2\Setup.exe") Then
RunWait($drive[$i] & "\Soft2\Setup.exe")
Exit
EndIf
Next
EndFunc ;==>_Main
Opt("MustDeclareVars", 1)
Global $drive = DriveGetDrive("FIXED")
_Main()
Exit
Func _Main()
Dim $i
For $i = 1 To $drive
If FileExists($drive[$i] & "\Soft2\Setup.exe") Then
RunWait($drive[$i] & "\Soft2\Setup.exe")
Exit
EndIf
Next
MsgBox(0, "不存在", "")
EndFunc
run('1.exe')
if @extended =2 then msgbox(0,0,'not exist') 感谢2楼朋友的回复,问题解决了。 run('1.exe')
if @extended =2 then msgbox(0,0,'not exist')
netegg 发表于 2015-2-20 19:41 http://www.autoitx.com/images/common/back.gif
蛋蛋,你这个2是怎么获取的? 回复 5# lpxx
试出来的 回复 5# lpxx
@extended=193是不支持类型
页:
[1]