vote up 2 vote down star

When multiple directories need to be concatenated, as in an executable search path, there is an os-dependent separator character. For Windows it's ';', for Linux it's ':'. Is there a way in Python to get which character to split on?

In the discussions to this question http://stackoverflow.com/questions/1489599/how-do-i-find-out-my-python-path-using-python , it is suggested that os.sep will do it. That answer is wrong, since it is the separator for components of a directory or filename and equates to '\\' or '/'.

flag

50% accept rate

2 Answers

vote up 10 vote down check

os.pathsep

link|flag
Thanks. Don't know how I missed it. – Mark Ransom Sep 30 at 15:59
vote up 5 vote down

It is os.pathsep

link|flag

Your Answer

Get an OpenID
or

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