📌  相关文章
📜  如何在python代码示例中获取不带扩展名的文件名

📅  最后修改于: 2022-03-11 14:45:21.783000             🧑  作者: Mango

代码示例3
# OPTION 1
import os
name = os.path.basename('/root/dir/sub/file.ext').split(".")[0]        # returns >file<

# OPTION 2
from pathlib import Path
Path('/root/dir/sub/file.ext').stem        # returns >file<
# Note that if your file has multiple extensions .stem will only remove the last extension.
# For example, Path('file.tar.gz').stem will return 'file.tar'.