Hello dear readers! Welcome back to another section of our tutorial on Python. In this tutorial guide, we are going to be studying about the Os fchdir() method.
os fchdir() changes the current working directory into the directory which is represented by the file descriptor fd. The descriptor must refer to an opened directory, not an open file.
os fchdir() changes the current working directory into the directory which is represented by the file descriptor fd. The descriptor must refer to an opened directory, not an open file.
Syntax
The following below is the syntax for Python Os fchdir() method -
os.fchdir( fd );
RECOMMENDED POST: Python os.dup2() Method with example
Parameter Details
- fd - This is the Directory descriptor.
Return Value
It does not return any value.
Example
The following below is a simple example -
#!/usr/bin/python import os, sys # First go to the "/var/www/html" directory os.chdir("/var/www/html" ) # Print current working directory print "Current working dir : %s" % os.getcwd() # Now open a directory "/tmp" fd = os.open( "/tmp", os.O_RDONLY ) # Use os.fchdir() method to change the dir os.fchdir(fd) # Print current working directory print "Current working dir : %s" % os.getcwd() # Close opened directory. os.close( fd )
Output
When the above code is executed, it will produce the following result -
Current working dir : /var/www/html Current working dir : /tmp
RECOMMENDED POST: Python os.chroot() Method with example
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial, we are going to be studying about the Python OS fchmod() Method.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.