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 getcwdu() method.
The Python os getcwdu() returns a unicode object which represents the current working directory.
The Python os getcwdu() returns a unicode object which represents the current working directory.
Syntax
The following below is the syntax for Python Os getcwdu() method -
os.getcwdu( )
RECOMMENDED POST: Python os.getcwd() Method
Parameter Details
- NA
Return Value
It returns a unicode object which is representing the current working directory.
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.getcwdu() # 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.getcwdu() # 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.fsync() 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 discussing about the Python OS isatty() 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.