Answers for "how to go current directory in python"

17

python get current directory

import os

print(os.getcwd())
Posted by: Guest on March-02-2021
0

change the current working directory in python

import os
cdir = os.getcwd() # it will return current working directory
print("Previous_dir",cdir)
# Previous_dir C:\Users\..\Desktop\python
os.chdir('C:/Users/../Desktop/desire_folder') #chdir used for change direcotry
print("Current_dir",cdir)
# Current_dir C:\Users\..\Desktop\python\teamspirit
Posted by: Guest on November-25-2020

Code answers related to "how to go current directory in python"

Python Answers by Framework

Browse Popular Code Answers by Language