Answers for "python only get filename without extension"

2

how to get file name without extension in python

>>> 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'
Posted by: Guest on June-14-2021
2

python get filename without extension

#Using pathlib in Python 3.4+
from pathlib import Path
Path('/root/dir/sub/file.ext').stem
Posted by: Guest on October-13-2020

Code answers related to "python only get filename without extension"

Python Answers by Framework

Browse Popular Code Answers by Language