python get full path
import os
# you have to be in the same directory as the file
file = 'myfile.txt'
# or also
file = 'directory/to/myfile.txt'
path = os.path.abspath(file)
python get full path
import os
# you have to be in the same directory as the file
file = 'myfile.txt'
# or also
file = 'directory/to/myfile.txt'
path = os.path.abspath(file)
python reference script directory
>>> import os
>>> print(os.path.dirname(os.path.realpath(__file__)))
C:FileLocation # Does not contain filename
python how to get script directory
import os
print(os.path.abspath(''))
get pyhton file path python
import os
os.path.realpath(__file__)
python how to get directory of script
import os
print(os.path.abspath(''))
python get directory of current script file
import os
os.path.abspath(__file__) # Directory of current python script
#Output will look something like: C:UsersUserNameDesktoppy-script.py
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us