putenv/setenv using substitutions
- by vinaym
I need user to define all the environment variables needed for my program in a text file as shown below.
MyDLLPath = C:\MyDLLPath
MyOption = Option1
PATH = %MyDLLPath%;%PATH%;
In my program I read each line and call putenv with the string. Problem is that the environment substitutions (%MyDLLPath%) are not being expanded.
I am guessing the…