And then is there a way to make Pythonwin run that automatically or do I have to add that to my script:
os.chdir(os.path.dirname(os.path.abspath(sys.argv[0])))

-Greg

On 11/22/05, Gabriel Genellina <[EMAIL PROTECTED]> wrote:
At Tuesday 22/11/2005 14:22, Gregory Piñero wrote:

>I'm not sure how to phrase this question.  How can I make PythonWin have
>it's current directory automatically set to the same directory as my script?
>
>For example I want the statement:
>file('test.txt','w')
>to make a file in the same directory as my script, instead of wherever
>PythonWin wants to put it by default, I think somewhere in C:\Python?

os.path.dirname(os.path.abspath(sys.argv[0])) returns the directory where
your script is.
You can make it the current dir using os.chdir


Gabriel Genellina
Softlab SRL




--
Gregory Piñero
Chief Innovation Officer
Blended Technologies
(www.blendedtechnologies.com)
_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to