原理:
用绝对路径,截断根目录的路径,就得到了相对路径。
代码
方法1:字符串替换(用字符串函数)推荐
import osprint('==========1===========')abspath = os.getcwd() # 获取当前路径rootpath = os.path.abspath('..') # 获取上级路径print(abspath)print(rootpath)print('==========2===========')ret = abspath.replace(rootpath, '.', 1)print(ret)print('此路径是否为文件夹:%s' % os.path.isdir('../' + ret))
方法2:字符串替换(用正则)
import osimport reprint('==========1===========')abspath = os.getcwd() # 获取当前路径rootpath = os.path.abspath('..') # 获取上级路径print(abspath)print(rootpath)print('==========2===========')print(repr(repr(rootpath).strip("'")).strip("'")) # 转义路径print(repr(abspath).strip("'"))print(str(abspath))print('==========3===========')ret_list = re.sub(repr(repr(rootpath).strip("'")).strip("'"), '.', repr(abspath).strip("'")) # 获取相对路径print('获取到的相对路径: %s' % ret_list)print('../' + ret_list)print('此路径是否为文件夹:%s' % os.path.isdir('../' + ret_list))