python 当前目录和上一个目录

BASE_DIR = os.path.split(os.path.realpath(__file__))[0]   #当前目录
db_dirs = os.path.join(BASE_DIR, 'db')

-----------------------------------------------------------------------------------------
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))  #上一个目录
db_dirs = os.path.join(BASE_DIR, 'db')
posted @ 2021-01-23 11:13  hisweetyGirl  阅读(234)  评论(0编辑  收藏  举报