Answers for "Changing the Current Working Directory in Python"

5

setwd python

os.chdir("/home/varun/temp")
Posted by: Guest on April-13-2020
4

how to use path to change working directory in python

pip install path
from path import Path

# set working directory
Path("/toWhereYouWantItToBe").cd()
Posted by: Guest on March-09-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 "Changing the Current Working Directory in Python"

Python Answers by Framework

Browse Popular Code Answers by Language