Answers for "get absolute path of file in python"

2

python get absolute path of file

>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'
Posted by: Guest on June-02-2021

Code answers related to "get absolute path of file in python"

Python Answers by Framework

Browse Popular Code Answers by Language