Answers for "set the current working directory python"

7

get current working directory python

# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
Posted by: Guest on November-25-2020
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..Desktoppython
os.chdir('C:/Users/../Desktop/desire_folder') #chdir used for change direcotry
print("Current_dir",cdir)
# Current_dir C:Users..Desktoppythonteamspirit
Posted by: Guest on November-25-2020

Code answers related to "set the current working directory python"

Python Answers by Framework

Browse Popular Code Answers by Language