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

I'm a python newbie with a problem too hard to tackle.

I have a string defining a path, were all the spaces have been converted to underscores. How can I find if it corresponds to a real path?

e.g. a string like /some/path_to/directory_1/and_to/directory_2
with a real path: /some/path_to/directory 1/and_to/directory 2

notice that the real path can contain BOTH spaces and underscores.

How can I feed it to os.path.exists() ???

thanks alessandro

share|improve this question

1 Answer

up vote 5 down vote accepted

Use glob but replacing every underscore with a range [ _]:

import glob
glob.glob('/some/path_to/directory_1/and_to/directory_2'.replace('_', '[ _]'))

Note that this will fail if your path contains the character [. You can fix this by first replacing [ with [[].

share|improve this answer
...by first replacing [ with [[]. – Constantin Sep 27 '10 at 9:33
like this? p1='/some/path_to/directory_1/and_to/directory_2'.replace('_', '[ _]') p2='/some/path_to/directory_1/and_to/directory_2'.replace('[', '[[]') glob.glob(p2) – alessandro Sep 27 '10 at 9:37
+1: Those who forget about the glob module are doomed to attempt to recreate it badly for a few minutes before hitting refresh on the SO question to see an answer from someone who hasn't. – MattH Sep 27 '10 at 9:38
You'll also need to "escape" ? and * in the same way. – Glenn Maynard Sep 27 '10 at 9:43
escape ?* ??? sorry, python newbie here - how do I do it? – alessandro Sep 27 '10 at 9:57

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.