get path to current directory python
import os
os.path.abspath(os.getcwd())
get path to current directory python
import os
os.path.abspath(os.getcwd())
get python script path
import os
def GetScriptPath():
return os.path.realpath(__file__);
print(GetScriptPath());
python get directory path of script
import os
# To get absolute path to current script
absolutePath = os.path.realpath(__file__)
print(absoultePath) # c:\File\Path\to\Current\Script.py
# To get absolute path excluding file name
directory = ("//".join(os.path.realpath(__file__).split('//')[:-1]))
print(directory) # c:\File\Path\to\Current split('\\') for windows
get pyhton file path python
import os
os.path.realpath(__file__)
get path from file path python
>>> import os
>>> os.path.split(os.path.abspath(existGDBPath))
('T:\\Data\\DBDesign', 'DBDesign_93_v141b.mdb')
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