merge paths with python, from /a/b/c + c/d to /a/b/c/d

109 Views Asked by At

in python, with os.path.join, I can join directories paths

import os
os.path.join('/usr','opt', 'bin')
'/usr/opt/bin'

how I can merge two path ?

from

/a/b/c + c/d

get

/a/b/c/d
1

There are 1 best solutions below

0
On BEST ANSWER

If you are sure that the paths are of the form you give an example for,

os.path.join(os.path.split(p1)[0], p2)

would do it.