lm959680 发表于 2009-4-16 17:19:16

判断不存在的文件,等待时间过久。[数组]

Global $srvfile
$srvfile = "\\192.168.1.2\game$\2.txt"
$srvfile = "\\admin\game$\1.txt"

For $i = 0 to 1
        If FileExists($srvfile[$i]) = 1 Then ExitLoop
Next

在判断文件是否存在,等待太久,不知道怎么改,还请高手赐教~~

[ 本帖最后由 lm959680 于 2009-4-16 18:01 编辑 ]

lm959680 发表于 2009-4-16 18:00:42

没办法,只能这样了,如果不回显,这脚本死定`~~

有谁去官方建议一下FileExists   加超时参数


_filetime("192.168.1.2", "\\192.168.1.2\game$\1.txt")
_filetime("192.168.1.118", "\\192.168.1.118\game$\1.txt")

Func _filetime($ping, $srvfile)
        Local $srv
        $srv = ping($ping, 250)
        If $srv > 0 Then
                If FileExists($srvfile) Then
                        ShellExecute($srvfile)
                        Exit
                EndIf
        EndIf
EndFunc   ;==>_filetime

wangxi0414 发表于 2009-8-18 10:28:27

学习了,蛮有用的

asxinyu 发表于 2009-8-19 16:17:13

学习了。。。。。。。。
页: [1]
查看完整版本: 判断不存在的文件,等待时间过久。[数组]