13 lines
416 B
Python
13 lines
416 B
Python
def slash_join(*args):
|
|
"""
|
|
Joins together strings and guarantees there is only one '/' in between the
|
|
each string joined. Double slashes ('//') are assumed to be intentional and
|
|
are not deduplicated.
|
|
"""
|
|
def rmslash(path):
|
|
path = path[1:] if path[0] == '/' else path
|
|
path = path[:-1] if path[-1] == '/' else path
|
|
return path
|
|
|
|
args = [rmslash(path) for path in args]
|
|
return '/'.join(args)
|