在 Python 中从文件名中提取扩展名
是的。使用os.path.splitext(参见Python 2.X 文档或Python 3.X 文档):
os.path.splitext
>>> import os >>> filename, file_extension = os.path.splitext('/path/to/somefile.ext') >>> filename '/path/to/somefile' >>> file_extension '.ext'
与大多数手动字符串拆分尝试不同,os.path.splitext它将正确地/a/b.c/d视为没有扩展名而不是有扩展名.c/d,并且它将被.bashrc视为没有扩展名而不是有扩展名.bashrc:
/a/b.c/d
.c/d
.bashrc
>>> os.path.splitext('/a/b.c/d') ('/a/b.c/d', '') >>> os.path.splitext('.bashrc') ('.bashrc', '')