Answers for "python change current working directory for always"

1

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
0

Changing the Current Working Directory in Python

# Import the os module
import os

# Print the current working directory
print("Current working directory: {0}".format(os.getcwd()))

# Change the current working directory
os.chdir('/Projects')

# Print the current working directory
print("New Current working directory: {0}".format(os.getcwd()))
Posted by: Guest on September-25-2021

Code answers related to "python change current working directory for always"

Python Answers by Framework

Browse Popular Code Answers by Language