Hi.. I am a newbie in AHK..
I was trying to design a program, this program will read all the directory from INI file..
But to start of, I first need to locate the setup ini file. In order to do this, I got to hard code the setup ini file into the code.
Is there a way for me to do it?
Like for example, i managed to read a script from the same working directory for AHK script using
Code:
%A_script%/test.ahk
but when I try to apply this to ini file
Code:
setup:=%A_script%/setup.ini
IniRead,dir,%setup%,test section,key
It seems like setup:=%A_script%/setup.ini does not work for INI file.. it shows me "setup.ini" contains illegal character.
Is there a way for me read the setup.ini in the same working directory?