Is there a function to extract the extension from a filename?

Thanks all! That's what I needed!

link|improve this question

76% accept rate
feedback

5 Answers

up vote 165 down vote accepted

Yes. Use os.path.splitext:

>>> import os
>>> fileName, fileExtension = os.path.splitext('/path/to/somefile.ext')
>>> fileName
'/path/to/somefile'
>>> fileExtension
'.ext'
link|improve this answer
3  
the use of basename is a little confusing here since os.path.basename("/path/to/somefile.ext") would return "somefile.ext" – Jiaaro Sep 19 '11 at 21:35
feedback
import os.path
extension = os.path.splitext(filename)[1]
link|improve this answer
3  
+1: I use this when I don't want the basename – nosklo Feb 12 '09 at 14:24
Out of curiosity, why import os.path instead of from os import path? – kiswa Aug 26 '11 at 12:40
@kiswa - I suppose you could do it that way. I've seen more code using import os.path though. – Brian Neal Aug 26 '11 at 19:01
Oh, I was just wondering if there was a specific reason behind it (other than convention). I'm still learning Python and wanted to learn more! – kiswa Aug 26 '11 at 19:30
5  
it depends really, if you use from os import path then the name path is taken up in your local scope, also others looking at the code may not immediately know that path is the path from the os module. Where as if you use import os.path it keeps it within the os namespace and wherever you make the call people know it's path() from the os module immediately. – dennmat Nov 24 '11 at 18:45
show 2 more comments
feedback
import os.path
extension = os.path.splitext(filename)[1][1:]

To get only text extension

link|improve this answer
feedback

Any of the solutions above work, but on linux I have found that there is a newline at the end of the extension string which will prevent matches from succeeding. Add the strip() method to the end. For example:

import os.path
extension = os.path.splitext(filename)[1][1:].strip() 
link|improve this answer
To aid my understanding, please could you explain what additional behaviour the second index/slice guards against? (i.e. the [1:] in .splittext(filename)[1][1:]) - thank you in advance – Styne666 Oct 11 '11 at 9:47
Figured it out for myself: splittext() (unlike if you split a string using '.') includes the '.' character in the extension. The additional [1:] gets rid of it. – Styne666 Oct 11 '11 at 9:55
feedback

One option may be splitting from dot:

>>> filename = "example.jpeg"
>>> filename.split(".")[-1]
'jpeg'

No error when file doesn't have an extension:

>>> "filename".split(".")[-1]
'filename'

But you must be careful:

>>> "png".split(".")[-1]
'png'    # But file doesn't have an extension
link|improve this answer
This would get upset if you're uploading x.tar.gz – Kirill Gordeenko May 11 at 13:59
Not actually. Extension of a file named "x.tar.gz" is "gz" not "tar.gz". os.path.splitext gives ".os" as extension too. – Murat Corlu May 11 at 20:21
feedback

Your Answer

 
or
required, but never shown

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