Change the working directory in Python

Check: Get the current Directory in Python

Python – Changing the current working directory:

This will be achieved via the “os” module:

os.chdir(path)

Change the current working directory to path.

Code:

import os

print(os.getcwd())

os.chdir('C:\\\\Users\\\\user-x\\\\Desktop')

print(os.getcwd())
Bilel

Bilel

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x