1

如何从 Python 脚本中找出当前的运行时目录?

4

3 回答 3

6

使用os.getcwd. 这将告诉您当前的工作目录。如果您创建一个新文件

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

然后a.txt将在当前工作目录中创建。os.chdir如果需要,用于更改工作目录。

于 2009-05-30T14:48:33.733 回答
0

os.getcwd()当你使用时会改变os.chdir

如果您需要 python 文件的固定路径,请使用:

module_path = os.path.dirname(__file__)
于 2012-10-26T07:54:12.083 回答
0

这对我有用。

os.path.dirname(__file__)
于 2011-05-19T21:08:57.313 回答