Python:动态获取项目文件夹的绝对路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:动态获取项目文件夹的绝对路径相关的知识,希望对你有一定的参考价值。
Hard-coding absolute paths is never ideal so here's a quick way to reference your project folder
############################ #This can be dynamically obtained ############################ #TEMPLATE_DIRS +=('/Users/user_name/Desktop/django_project/templates/',) ############################ #With a little abspath magic ############################ import os.path PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) TEMPLATE_DIRS += (os.path.join(PROJECT_ROOT, "templates"),)
以上是关于Python:动态获取项目文件夹的绝对路径的主要内容,如果未能解决你的问题,请参考以下文章