我从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"
如何将所有事情现在加入标准路径字符串?
谢谢