Answers for "python get absolute path of current file"

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
1

python file location path

import os

print('getcwd:      ', os.getcwd())
print('__file__:    ', __file__)
Posted by: Guest on August-23-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language