python get filename from path without extension code example
Example 1: get path to file without filename python
import os
filepath = '/a/path/to/my/file.txt'
os.path.dirname(filepath)
Example 2: python get filename from path
import os
print(os.path.basename(your_path))
Example 3: how to get just the filename 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'
Example 4: python get file extension from path
import os.path
extension = os.path.splitext(filename)[1]
Example 5: python get filename without extension
from pathlib import Path
Path('/root/dir/sub/file.ext').stem