首页 > 文章列表 > python 如何获取文件名后缀

python 如何获取文件名后缀

Python 获取 文件名 后缀
312 2022-08-07

方法:

使用 os.path.splitext(file)[0] 可获得文件名 。

使用 os.path.splitext(file)[-1] 可获得以 . 开头的文件后缀名 。

import os
file = "Hello.py"

获取前缀(文件名称)

assert os.path.splitext(file)[0] == "Hello"

获取后缀(文件类型)

assert os.path.splitext(file)[-1] == ".py"
assert os.path.splitext(file)[-1][1:] == "py"