本帖最后由 mshuking 于 2014-12-11 14:29 编辑
au3配置文件写入读取#NoTrayIcon
$RUN = IniReadSection(@ScriptDir & "\run.ini", "runpath")
If @error Then
IniWriteSection("run.ini","runpath","1",$var)
IniWriteSection("run.ini","runpath","2",$var)
Exit
Else
For $i = 1 To $RUN[0][0]
$TRUN = IniRead(@ScriptDir & "\run.ini", "runpath", $RUN[$i][0], "")
If $TRUN <> "" And FileExists($TRUN)<> 0 Then
Run($RUN[$i][1], "", @SW_HIDE)
EndIf
Sleep(1000);多个程序间的运行间隔
Next
EndIf
EndIf
If @error Then
IniWriteSection("run.ini","runpath","1",$var)
IniWriteSection("run.ini","runpath","2",$var)
Exit
这个应该怎写才是对的
下面是INI文件格式
[RUNPATH]
1=1.exe 参数 如:1=1.exe 192.168.0.251 加了参数不运行,应该怎么修改?
2=c:\4.exe
3=x.bat
帮忙修改下。。。。 |