in python, with os.path.join, I can join directories paths
os.path.join
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
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.
Copyright © 2021 Jogjafile Inc.
If you are sure that the paths are of the form you give an example for,
would do it.