python get complete path of file code example
Example 1: get full path of file python
>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'
Example 2: python get path of current file
import pathlib
pathlib.Path(__file__).parent.absolute()
Example 3: 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'