Saturday, January 18, 2014

A way to change a system environment variable in Python program.

In Python program we can set system environment variables by using os.environ. For example,

os.environ ["DDD"] = "..." 

But there is a problem that the variable will be disappear after the Python program exits because the variable is owned by the Python program.

The following way can solve the problem to create an environment variable with Python and share it with other programs.

python ChgEnv.py %1
call Temp.bat
view raw ChgEnv.bat hosted with ❤ by GitHub
import sys
File = open ("Temp.bat", "w+")
File.write ("set DDD=%s\n" % sys.argv [1])
File.close ()
view raw ChgEnv.py hosted with ❤ by GitHub
-Count

No comments:

Post a Comment