标签:style color os strong 文件 数据 ar div
认识下os.path.dirname(__file__)
获取路径名:os.path.dirname()
获取文件所在目录的完整路径:os.path.dirname(__file__)
在django项目中的settings.py中还可以进行如下的配置:
如配置数据库:
1 import os
2 DATABASE_ENGINE=‘sqlite3‘
3 DATABASE_NAME=os.path.join(os.path.dirname(__file__),‘myAPP/mydata.db‘)
其中 os.path.dirname(__file__)函数用于取出settings.py所在文件夹的位置,在用os.path.join()函数将该位 置和后面指定的‘myAPP/mydata.db‘ 字符串连接一起,实现sqlite3数据库文件mydata.db具体存放的位置。
Python os.path.dirname(__file__) os.path.join(str,str),布布扣,bubuko.com
Python os.path.dirname(__file__) os.path.join(str,str)
标签:style color os strong 文件 数据 ar div
原文地址:http://www.cnblogs.com/fendou-999/p/3861433.html