w3resource

Python: Retrieve the current working directory and change the dir

Python Operating System Services: Exercise-9 with Solution

Write a Python program to retrieve the current working directory and change the dir (move up one).

Sample Solution:

Python Code :

import os
print('Current dir:', os.getcwd())
print('\nChange the dir (moving up one):', os.pardir)
os.chdir(os.pardir)
print('Current dir:', os.getcwd())
print('\nChange the dir (moving up one):', os.pardir)
os.chdir(os.pardir)
print('Current dir:', os.getcwd())

Sample Output:

Current dir: /tmp/sessions/a9c74a8fb247929c

Change the dir (moving up one): ..
Current dir: /tmp/sessions

Change the dir (moving up one): ..
Current dir: /tmp

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find the parent’s process id, real user ID of the current process and change real user ID.
Next: Write a python program to access environment variables and value of the environment variable.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.