vote up 0 vote down star

How do I find out the current runtime directory from within a Python script?

flag

80% accept rate

1 Answer

vote up 4 vote down check

Use os.getcwd. This will tell you the current working directory. If you create a new file with

fp = open('a.txt', 'w')

then a.txt will be created in the current working directory. Use os.chdir to change the working directory, if needed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.