goldtech wrote:
> ... I want the new file's location to be on the user's desktop in 
> a Windows XP environment....
> 
How about:
     import os.path
     handle = open(os.path.expanduser(r'~\DeskTop\somefile.txt'), 'w')
     ...

-Scott
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to