pathlib path get filename without directory code example
Example 1: get path to file without filename python
import os
filepath = '/a/path/to/my/file.txt'
os.path.dirname(filepath)
# Yields '/a/path/to/my'
Example 2: pathlib path get directory of current file
import pathlib
pathlib.Path(__file__).parent.absolute()