Connecting Tech Pros Worldwide Forums | Help | Site Map

home variable?

Member
 
Join Date: May 2007
Posts: 50
#1: Sep 9 '09
The internet is terrible for searching for these kinds of things... How do I get the home variable in python again? Like, if the program is run on an unix system, it'll return /home/user, and on windows it'll return c:\Documents and Settings\User or something like that?

bvdet's Avatar
Moderator
 
Join Date: Oct 2006
Location: Nashville, TN
Posts: 1,563
#2: Sep 9 '09

re: home variable?


Builtin os.environ returns a dictionary of environment variables. On my system (XP), the dictionary key is 'USERPROFILE' or 'HOMEDRIVE' + 'HOMEPATH'.
Member
 
Join Date: May 2007
Posts: 50
#3: Sep 9 '09

re: home variable?


Thanks! That's going to be a great help in the future!
Reply

Tags
home, variable