Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 Python 脚本中找出当前的运行时目录?
使用os.getcwd. 这将告诉您当前的工作目录。如果您创建一个新文件
os.getcwd
fp = open('a.txt', 'w')
然后a.txt将在当前工作目录中创建。os.chdir如果需要,用于更改工作目录。
a.txt
os.chdir
os.getcwd()当你使用时会改变os.chdir
os.getcwd()
如果您需要 python 文件的固定路径,请使用:
module_path = os.path.dirname(__file__)
这对我有用。
os.path.dirname(__file__)