Answers for "get full path of file python with filename"

33

python get filename from path

import os
print(os.path.basename(your_path))
Posted by: Guest on February-28-2020
2

get full path of file python

>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'
Posted by: Guest on December-24-2020

Code answers related to "get full path of file python with filename"

Python Answers by Framework

Browse Popular Code Answers by Language