0
如何在NSIS中執行復合字符串比較?nsis中的複合字符串比較
基本上是這樣的:if (str1 == "" || str2 == "") ...
strcpy $1 "c:\foo"
strcpy $2 "d:\bar"
${if} strcmp $1 ""
${orif} strcmp $2 ""
MessageBox MB_OK "one or both are empty"
${else}
messagebox mb_ok "both are not"
${endif}
SectionEnd
謝謝喲ü。我知道這是愚蠢的! –