I'm learning Python and I noticed something strange with one of my scripts. Doing a little testing I discovered the problem stemmed from this behavior:
>>> import os
>>> os.path.join('a','b')
'a/b'
>>> os.path.join('a','/b')
'/b'
Checking the documentation, this is, in fact, the design of the function:
os.path.join(path1[, path2[, ...]])
Join one or more path components intelligently. If any component is an absolute path, all previous components (on Windows, including the previous drive letter, if there was one) are thrown away, and joining continues. ...
My question isn't why my script failed, but rather why the function was designed this way. I mean, on Unix at least, a//b is a perfectly acceptable way to designate a path, if not elegant. Why was the function designed this way? Is there any way to tell if one or more path elements have been discarded short of testing each path string with os.path.isabs()?
Out of curiosity, I also checked the case where a path component ends in an os.sep character:
>>> os.path.join('a/','b')
'a/b'
That works as expected.
filename.lstrip('/')– voithos Sep 26 '12 at 19:40filename.lstrip(os.sep)and it's portable to most major platforms. – delnan Sep 26 '12 at 19:42os.sep + '/'.. – Martijn Pieters Sep 26 '12 at 19:43\fooexists and refers to the current drive, but it's very rare). Seems like there is no easy way out... then again, I don't recall ever needing this. – delnan Sep 26 '12 at 19:47os.sep + (os.altsep or ""). – Lauritz V. Thaulow Sep 26 '12 at 19:50