python - 从拆分路径构建新的路径字符串

时间:2012-06-24 18:59:20

标签: python python-2.7

我从XML读取路径列表,路径包含不规则的elemnts用途 由certian应用程序翻译他们internaly。 当前的路径字符串对我来说是无用的,我希望将它们标准化。

example: 
path = "%personal%\new_lcation\%vendorlibs%\generated"
# split this to a list
omponents = path.split(os.sep)
# replace elemnts 0,2
components[0]="c:\ProgramFiles"  
components[2]="somthing"

如何将所有事情现在加入标准路径字符串?

谢谢

1 个答案:

答案 0 :(得分:3)

os.path.join(*components)os.path.join documentation