gpt4 book ai didi

python - 如何找到脚本的目录?

转载 作者:IT老高 更新时间:2023-10-28 12:03:19 25 4
gpt4 key购买 nike

考虑以下 Python 代码:

import os
print os.getcwd()

我使用 os.getcwd()get the script file's directory location .当我从命令行运行脚本时,它会给我正确的路径,而当我从 Django View 中的代码运行的脚本运行它时,它会打印 / .

如何从 Django View 运行的脚本中获取脚本的路径?

更新:
总结到目前为止的答案 - os.getcwd()os.path.abspath()两者都给出了当前工作目录,它可能是也可能不是脚本所在的目录。在我的虚拟主机设置中 <code>__file__</code>只给出没有路径的文件名。

在 Python 中是否有任何方法(总是)能够接收脚本所在的路径?

最佳答案

您需要在 __file__ 上调用 os.path.realpath,这样当 __file__ 是没有路径的文件名时,您仍然可以获得目录路径:

import os
print(os.path.dirname(os.path.realpath(__file__)))

关于python - 如何找到脚本的目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4934806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com