Win XP sp3
AutoIt3 v3.3.2.0
IniRead не видит обрамляющих кавычек, а IniReadSection - видит.
AutoIt3 v3.3.2.0
IniRead не видит обрамляющих кавычек, а IniReadSection - видит.
Код:
#Include <Array.au3>
$Ini = @ScriptDir & '\file.ini'
IniWrite ( $Ini, "section", "key1", '''val''ue''' )
IniWrite ( $Ini, "section", "key2", '"val"ue"' )
Sleep(250)
ConsoleWrite(IniRead($Ini, "section", "key1", "NotFound") & @LF)
ConsoleWrite(IniRead($Ini, "section", "key2", "NotFound") & @LF)
$var = IniReadSection($Ini, "section")
_ArrayDisplay($var)