返回n个上级目录
import os
path = r'G:\2021.9-8000公里数据5\东肖新线上行二车道AK10\GPS_GE\20210714\S76A-123324\S76A-CiCO-10.600-标准格式-20210714123324-JZ'
print(path)
print(os.path.dirname(path))
print(os.path.abspath(os.path.join(path, "..")))
print(os.path.abspath(os.path.join(path, "../..")))
print(os.path.abspath(os.path.join(path, "../../..")))
print(os.path.abspath(os.path.join(path, "../../../..")))
打印输出:
G:\2021.9-8000公里数据5\东肖新线上行二车道AK10\GPS_GE\20210714\S76A-123324\S76A-CiCO-10.600-标准格式-20210714123324-JZ
G:\2021.9-8000公里数据5\东肖新线上行二车道AK10\GPS_GE\20210714\S76A-123324
G:\2021.9-8000公里数据5\东肖新线上行二车道AK10\GPS_GE\20210714\S76A-123324
G:\2021.9-8000公里数据5\东肖新线上行二车道AK10\GPS_GE\20210714
G:\2021.9-8000公里数据5\东肖新线上行二车道AK10\GPS_GE
G:\2021.9-8000公里数据5\东肖新线上行二车道AK10
|