how to get the filename from the path in python code example
Example 1: python get filename from path
import os
print(os.path.basename(your_path))
Example 2: python get path of file
>>> import os
>>> filepath="/media/rtsuse/some/random/filepath/with/logfile.log"
>>> os.path.dirname(filepath)
'/media/rtsuse/some/random/filepath/with'