标签:dir __file__ base import 获取 port imp 文件 app
import sys,os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
#__file__
#os.path.abspath(__file__)获取当前文件的绝对路径
#os.path.dirname()获取当前路径的上一级路径
sys.path.append(BASE_DIR)
#将新的路径添加到sys.path
标签:dir __file__ base import 获取 port imp 文件 app
原文地址:https://www.cnblogs.com/lhqlhq/p/8794636.html