Change directory to the directory of a Python script

Question:

How do I change directory to the directory with my Python script in? So far, I figured out I should use os.chdir and sys.argv[0]. I’m sure there is a better way then to write my own function to parse argv[0].

Asked By: user34537

||

Answers:

os.chdir(os.path.dirname(__file__))
Answered By: ayrnieu

Sometimes __file__ is not defined, in this case you can try sys.path[0]

Answered By: Miki

os.chdir(os.path.dirname(os.path.abspath(__file__))) should do it.

os.chdir(os.path.dirname(__file__)) would not work if the script is run from the directory in which it is present.

Answered By: iamas

on windows OS, if you call something like python somefile.py this os.chdir(os.path.dirname(__file__)) will throw a WindowsError. But this should work for all cases:

import os
absFilePath = os.path.abspath(__file__)
os.chdir( os.path.dirname(absFilePath) )
Answered By: Scott 混合理论
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.