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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/python-exercises/os/python-os-exercise-9.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics