We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
That folder is often cleared and thus, as the name suggests, temporary files should be there only. Config is not quite temporary.
I would recommend changing:
global iniFilePath := % Format("{1}/{2}.ini", A_Temp, A_ScriptName)
to for example:
global iniFilePath := % Format("{1}/{2}.ini", A_ScriptDir, A_ScriptName)
which would place the ini right next to the script.
Another idea would be to place it where configs usually go in Windows, so a new folder in %APPDATA%:
%APPDATA%
global iniFilePath := % Format("{1}/{2}/{2}.ini", A_AppData, A_ScriptName)
The text was updated successfully, but these errors were encountered:
Thank you, for your Request.
The TEMP directory is a leftover from testing. I will implement your APPDATA solution in the next days.
Kind regards tiuub
Sorry, something went wrong.
tiuub
No branches or pull requests
That folder is often cleared and thus, as the name suggests, temporary files should be there only. Config is not quite temporary.
I would recommend changing:
to for example:
which would place the ini right next to the script.
Another idea would be to place it where configs usually go in Windows, so a new folder in
%APPDATA%
:The text was updated successfully, but these errors were encountered: