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

How to get the filename without the extension from a path in Python?

I found out a method called os.path.basename to get the filename with extension. But even when I import os, I am not able to call it path.basename. Is it possible to call it as directly as basename?

share|improve this question
Do you mean "from os.path import basename"? – Jarret Hardie Mar 24 '09 at 16:45
It's hard to tell what you're asking here; the first part of the question is 'filename without extension', but then you're talking about 'basename' (which doesn't do that), and how to use 'from ... import ...' syntax. – DNS Mar 24 '09 at 16:48
-1: No code; -1 No error messages or traceback. – S.Lott Mar 24 '09 at 16:49
1  
@MestreLion: I do hope you take some English classes because clearly I am talking about filename extensions. – Joan Venge Apr 12 at 5:40
1  
Well if you post an offensive comment, expect a similar one. A couple people are confused out of 40k people who got it without a problem, so the question must be confusing... makes sense. If you find it confusing, please feel free to edit it. I understand it could be clearer. – Joan Venge Apr 12 at 17:55
show 5 more comments

4 Answers

up vote 81 down vote accepted

Getting the name of the file without the extension :

import os
print os.path.splitext("path_to_file")[0]

As for your import problem, you solve it this way :

from os.path import basename

# now you can call it directly with basename
print basename("/a/b/c.txt")
share|improve this answer
Huh? "from os.path import basename as basename" is just the same as "from os.path import basename". The "as ..." is unnecessary, and just adds clutter. – Devin Jeanpierre Mar 24 '09 at 16:47
Yes, I know. I forgot to add the comments where I explained why I did that. – Tempus Mar 24 '09 at 16:47
There is no reason to do that. It's essentially a no-op-- if you want to illustrate importing it under a new name, actually import it under a new name. import foo as foo is just useless. – Devin Jeanpierre Mar 24 '09 at 16:50
Sure thing. +1, by the way. You answered the whole question (as did that other guy that I gave +1). – Devin Jeanpierre Mar 24 '09 at 17:00

Just roll it:

>>> base=os.path.basename('/root/dir/sub/file.ext')
>>> base
'file.ext'
>>> os.path.splitext(base)
('file', '.ext')
>>> os.path.splitext(base)[0]
'file'
>>>
share|improve this answer
os.path.basename seems nicer and more compact than an import followed by the call to basename. – Scott Wilson Mar 30 '12 at 13:42
>>> print os.path.splitext(os.path.basename("hemanth.txt"))[0]
hemanth
share|improve this answer
+1 for this. 3 exact same answers, but this is the most direct one. You just could have used ` for showing the code, and "/somepath/hermanth.txt" as a path instance. – Cawas May 21 '10 at 20:57
Thanks, i added the `` but don really know why the code is not been highlighted! – hemanth.hm Jun 23 '10 at 10:15

But even when I import os, I am not able to call it path.basename. Is it possible to call it as directly as basename?

import os, and then use os.path.basename

importing os doesn't mean you can use os.foo without referring to os.

share|improve this answer
though if you wanted to call foo directly you could use from os import foo. – tgray Mar 24 '09 at 17:33

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.