py get filename of path 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: python get filename from path
import os
print(os.path.basename(your_path))