如何在没有Python中的路径扩展的情况下获取文件名?

如何在没有Python中的路径扩展的情况下获取文件名?

我找到了一个名为os.path.basename的方法来获取带有扩展名的文件名。 但即使我输入os时,我也无法称之为path.basename 。 是否可以直接将它称为基本名称?


获取没有扩展名的文件名称:

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

至于你的进口问题,你可以这样解决:

from os.path import basename

# now you can call it directly with basename
print(basename("/a/b/c.txt"))

滚动它:

>>> import os
>>> base=os.path.basename('/root/dir/sub/file.ext')
>>> base
'file.ext'
>>> os.path.splitext(base)
('file', '.ext')
>>> os.path.splitext(base)[0]
'file'

>>> print os.path.splitext(os.path.basename("hemanth.txt"))[0]
hemanth
链接地址: http://www.djcxy.com/p/3377.html

上一篇: How to get the filename without the extension from a path in Python?

下一篇: Can python detect which OS is it running under?