English 中文(简体)
转到Python脚本的目录。
原标题:
  • 时间:2009-02-04 01:24:43
  •  标签:

我该如何改变目录以到达包含我的Python脚本的目录?到目前为止,我想到了使用os.chdirsys.argv [0]。我确信有更好的方式,而不是编写自己的函数来解析argv [0]。

最佳回答
os.chdir(os.path.dirname(__file__))
问题回答

os.chdir(os.path.dirname(os.path.abspath(__file__))) 应该可以实现。

如果脚本在其所在的目录中运行,则 os.chdir(os.path.dirname(__file__)) 无法工作。 (Translated by an AI language model)

有时候__file__没有定义,在这种情况下你可以尝试使用sys.path[0]

在Windows操作系统上,如果您调用类似 python somefile.py 的东西, os.chdir(os.path.dirname(__file__)) 将引发WindowsError。 但是这应该适用于所有情况:

import os
absFilePath = os.path.abspath(__file__)
os.chdir( os.path.dirname(absFilePath) )




相关问题
热门标签