I've Python 2.5.x on my Windows 7 machine.
os.path.exists('C:') # returns True
os.path.exists('C:\Users') # returns True
os.path.exists('C:\Users\alpha') # returns False, when ALPHA is a user on my machine
I've given read/write permissions to the CLI I'm using. What could be the possible reason for this ?