Changes between Initial Version and Version 1 of Ticket #3987, comment 9
- Timestamp:
- 04/12/24 01:09:10 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3987, comment 9
initial v1 2 2 No, it did not fix. For some reason it still creates the localappdata folder. 3 3 If I change: 4 {{{ 4 {{{#!autoit 5 5 Global $TempDir = _WinAPI_ExpandEnvironmentStrings(IniRead($AutoIt3WapperIni, "Other", "TempDir", "")) 6 6 If Not FileExists($TempDir) Or $TempDir = "" Then … … 11 11 }}} 12 12 to 13 {{{ 13 {{{#!autoit 14 14 Global $TempDir = _WinAPI_ExpandEnvironmentStrings(IniRead($AutoIt3WapperIni, "Other", "TempDir", "")) 15 15 MsgBox("", "", $TempDir) … … 24 24 25 25 Also, I think 26 {{{ 26 {{{#!autoit 27 27 If Not FileExists($TempDir) Or $TempDir = "" Then 28 28 }}} 29 29 should be changed to 30 {{{ 30 {{{#!autoit 31 31 If $TempDir <> "" And FileExists($TempDir) And Not FileExists($TempDir & "\AutoIt v3\Aut2exe") Then 32 32 DirCreate($TempDir & "\AutoIt v3\Aut2exe")