how to find current working user

Gabriel Genellina gagsl-py2 at yahoo.com.ar
Mon Feb 11 13:30:14 EST 2008


En Mon, 11 Feb 2008 15:21:16 -0200, Praveena Boppudi (c)  
<pboppudi at vmware.com> escribi�:

> Can anyone tell me how to find current working user in windows?

If it is just informational, use os.environ['USERNAME']
Using win32wnet (from the pywin32 package):

py> import win32wnet
py> win32wnet.WNetGetUser()
'gabriel'

-- 
Gabriel Genellina




More information about the Python-list mailing list