Answers for "how to get the current directory of a file with python"

11

python get current file location

import os
os.path.dirname(os.path.abspath(__file__))
Posted by: Guest on May-11-2020
-1

python get directory of current script file

import os
os.path.abspath(__file__) # Directory of current python script
#Output will look something like: C:\Users\UserName\Desktop\py-script.py
Posted by: Guest on January-13-2021

Code answers related to "how to get the current directory of a file with python"

Python Answers by Framework

Browse Popular Code Answers by Language