Answers for "python how to make relative path and make it absolute"

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 "python how to make relative path and make it absolute"

Python Answers by Framework

Browse Popular Code Answers by Language