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())
os get current directory
import os
#Get Current working Directory
currentDirectory = os.getcwd()
#Change the Current working Directory
os.chdir('/home/varun')
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
file path current directory python
#Python 3
#For the directory of the script being run:
import pathlib
pathlib.Path(__file__).parent.resolve()
#For the current working directory:
import pathlib
pathlib.Path().resolve()
#Python 2 and 3
#For the directory of the script being run:
import os
os.path.dirname(os.path.abspath(__file__))
#If you mean the current working directory:
import os
os.path.abspath(os.getcwd())
how to use path to change working directory in python
pip install path
from path import Path
# set working directory
Path("/toWhereYouWantItToBe").cd()
path of current working directory with os module python
import os
cwd = os.getcwd()
my_file='image.png'
file_path = os.path.join(cwd, my_file)
file_path
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