dnvplj 发表于 2015-2-20 13:40:58

[已解决]文件夹不存如何有个提示

本帖最后由 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

veket_linux 发表于 2015-2-20 16:07:01


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

netegg 发表于 2015-2-20 19:41:17

run('1.exe')
if @extended =2 then msgbox(0,0,'not exist')

dnvplj 发表于 2015-2-20 23:21:21

感谢2楼朋友的回复,问题解决了。

lpxx 发表于 2015-2-21 00:17:37

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是怎么获取的?

netegg 发表于 2015-2-21 00:34:03

回复 5# lpxx
试出来的

netegg 发表于 2015-2-21 01:08:20

回复 5# lpxx
@extended=193是不支持类型
页: [1]
查看完整版本: [已解决]文件夹不存如何有个提示