vote up 2 vote down star

I want to extract just the file name portion of a path. My code below works, but I'd like to know what the better (pythonic) way of doing this is.

filename = ''
    tmppath = '/dir1/dir2/dir3/file.exe'
    for i in reversed(tmppath):
        if i != '/':
            filename += str(i)
        else:
            break
    a = filename[::-1]
    print a
flag

The question is poorly worded, should be "How do I extract the filename from a path." – Kurt Nov 2 at 8:52
1  
What book or tutorial are you using to learn Python? – S.Lott Nov 2 at 12:06

5 Answers

vote up 12 vote down check

Try:

#!/usr/bin/python
import os.path
path = '/dir1/dir2/dir3/file.exe'
name = os.path.basename(path)
print name
link|flag
excellent - many thx! – zyrus001 Nov 2 at 8:57
You're welcome zyrus001. – Bart K. Nov 2 at 9:25
vote up 0 vote down

The existing answers are correct for your "real underlying question" (path manipulation). For the question in your title (generalizable to other characters of course), what helps there is the rsplit method of strings:

>>> s='some/stuff/with/many/slashes'
>>> s.rsplit('/', 1)
['some/stuff/with/many', 'slashes']
>>> s.rsplit('/', 1)[1]
'slashes'
>>>
link|flag
or rpartition, of course – SilentGhost Nov 2 at 18:41
vote up 1 vote down
>>> import os
>>> path = '/dir1/dir2/dir3/file.exe'
>>> path.split(os.sep)
['', 'dir1', 'dir2', 'dir3', 'file.exe']
>>> path.split(os.sep)[-1]
'file.exe'
>>>
link|flag
vote up 2 vote down

Use os.path.basename(..) function.

link|flag
vote up 4 vote down

you'd be better off using standard library for this:

>>> tmppath = '/dir1/dir2/dir3/file.exe'
>>> import os.path
>>> os.path.basename(tmppath)
'file.exe'
link|flag

Your Answer

Get an OpenID
or

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