vote up -1 vote down star

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?

flag

56% accept rate
Do you mean "from os.path import basename"? – Jarret Hardie Mar 24 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 at 16:48
-1: No code; -1 No error messages or traceback. – S.Lott Mar 24 at 16:49

4 Answers

vote up 8 vote down check

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")
link|flag
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 at 16:47
Yes, I know. I forgot to add the comments where I explained why I did that. – Geo Mar 24 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 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 at 17:00
vote up 4 vote down

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.

link|flag
though if you wanted to call foo directly you could use from os import foo. – tgray Mar 24 at 17:33
vote up 2 vote down

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'
>>>
link|flag
vote up 1 vote down

print os.path.splitext(os.path.basename("hemanth.txt"))[0]

Prints hemanth

link|flag

Your Answer

Get an OpenID
or

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