StackOverflow 文档 Python Language 教程 Oskpth 相对路径的绝对路径 相对路径的绝对路径 Created: November-22, 2018 Use os.path.abspath: >>> os.getcwd() '/Users/csaftoiu/tmp' >>> os.path.abspath('foo') '/Users/csaftoiu/tmp/foo' >>> os.path.abspath('../foo') '/Users/csaftoiu/foo' >>> os.path.abspath('/foo') '/foo' 获取父目录路径组件操作