📅  最后修改于: 2022-03-11 14:45:21.783000             🧑  作者: Mango
# 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'.