在 Python 中,访问脚本的目录位置通常使用 os.getcwd() 或类似方法来完成。但是,当从 Django 视图中执行脚本时,当前工作目录可能并不代表脚本的实际位置。
要可靠地获取脚本的目录路径,请按如下方式修改代码:
<code class="python">import os # Resolve the real path to the file, even if it's just a filename script_path = os.path.realpath(__file__) # Extract the directory path from the resolved path script_dir = os.path.dirname(script_path) print(script_dir)</code>
通过在 __file__ 上调用 os.path.realpath,您可以确保脚本的路径始终得到解析,无论它是文件名还是完整路径。然后 os.path.dirname 提取解析路径的目录部分。此方法提供了一种可靠的方法来确定脚本的目录,即使是从 Django 视图中调用也是如此。
以上是从 Django 视图调用时如何解析脚本目录路径?的详细内容。更多信息请关注PHP中文网其他相关文章!