Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The below code will not join, when debugged the command does not store the whole path but just the last entry.

os.path.join('/home/build/test/sandboxes/', todaystr, '/new_sandbox/')

When I test this it only stores the '/new_sandbox/' part of the code. Can anyone help.

Thanks

share|improve this question

7 Answers

up vote 44 down vote accepted

The latter strings shouldn't start with a slash. If they start with a slash, then they're considered an "absolute path" and everything before them is discarded.

Quoting the Python docs for os.path.join:

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.

share|improve this answer
4  
-1: No string should include a "/". One whole point of os.path.join is to prevent putting any slashes in the path. – S.Lott Dec 22 '09 at 12:29
1  
@Craig, "full path" should be "absolute path". – Peter Hansen Dec 22 '09 at 12:52
20  
this makes this function mostly pointless. – Martlark Jun 8 '11 at 22:09
1  
The problem with str.join() is, of course, that it won't eliminate double slashes. I think this is the primary purpose for folks using os.path.join. e.g. '/'.join(['/etc/', '/conf']) results in three slashes: '/etc///conf' – Dustin Rasener Jul 31 '12 at 14:03
1  
@DustinRasener You can use os.path.normpath to achieve that aim. – Lattyware Oct 28 '12 at 17:48
show 3 more comments

The idea of os.path.join is to make your program cross-platform (linux/win32/etc).

Even one slash ruins it.

So it only makes sense when being used with some kind of reference point like os.environ['HOME'] or os.path.dirname(__file__)

share|improve this answer
3  
finally somebody got the point – marcorossi Dec 16 '11 at 22:57
+1 really! haha – uʍop ǝpısdn Oct 26 '12 at 21:00

It's because your '/new_sandbox/' begins with a / and thus is assumed to be relative to the root directory. Remove the leading /.

share|improve this answer

do not use forward slashes at the beginning of path components, except when refering to the root dir:

os.path.join('/home/build/test/sandboxes', todaystr, 'new_sandbox')

see also: http://docs.python.org/library/os.path.html#os.path.join

share|improve this answer

do it like this, without too the extra slashes

root="/home"
os.path.join(root,"build","test","sandboxes",todaystr,"new_sandbox")
share|improve this answer

Try with 'new_sandbox' only

os.path.join('/home/build/test/sandboxes/', todaystr, 'new_sandbox')
share|improve this answer

os.path.join can be used in conjunction with os.path.sep to create an absolute rather than relative path.

os.path.join(os.path.sep, 'home','build','test','sandboxes',todaystr,'new_sandbox')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.