python中os.path常用模块
# 获得根路径
def getRootPath():
# 获取文件目录
curPath = os.path.abspath(os.path.dirname(__file__))
# 获取项目根路径,内容为当前项目的名字
rootPath = curPath[:curPath.find('项目名称')+len('项目名称')]
return rootPath
# 从根目录下开始获取其他路径
def getOtherPath(abspath:str):
# 调用了上述获得项目根目录的方法
rootPath = getRootPath()
dataPath = os.path.abspath(rootPath + abspath)
return dataPath
获得项目中文件路径,如果用pyinstaller
打包后,可以用该方法找临时地址。
# 获得路径,当前文件所在路径
def resource_path(relative_path):
# 是否Bundle Resource
if getattr(sys, 'frozen', False):
# running in a bundle
base_path = sys._MEIPASS
print('true',base_path)
else:
# running live
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path)
def get_desktop_dir():
"""
@Description: 获取用户桌面路径
"""
return os.path.join(os.path.expanduser('~'),'Desktop')