for example I have string:

test = "/var/tmp/test.log" 

I want to get a path of this file.

link|improve this question

71% accept rate
2  
No idea what you want specifically, so... docs.python.org/library/os.path.html – Mark Loeser Mar 23 '11 at 14:19
What exactly do you want? You have the path right there, so I do not understand the problem. Can you give an example of the expected output? – Björn Pollex Mar 23 '11 at 14:20
feedback

4 Answers

Use os.path.dirname():

>>> import os
>>> os.path.dirname('/var/tmp/test.log')
'/var/tmp'
link|improve this answer
Also check out os.path.basename, and os.path.split. – Buttons840 Mar 23 '11 at 15:33
feedback
 >>> import os
 >>> os.path.dirname("/var/tmp/test.log")
 '/var/tmp'
link|improve this answer
feedback

if you want to get absolute path, try this

C:>python Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information.

>>> import os.path
>>> test = '.'
>>> os.path.dirname(os.path.abspath(test))
'C:\\'
link|improve this answer
feedback

Which part are you interested in? The os.path module has a lot of useful functions. If that fails, a .split("/") would do the trick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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