Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Python os.getcwd() Method



Hello dear readers! Welcome back to another section of my Tutorial on Python. In this tutorial guide, we are going to be studying about the Os getcwd() method.

The Python os getcwd() returns the current working directory of a process.

Syntax

The following below is the syntax for Python Os getcwd() method -

cwd = os.getcwd( )

RECOMMENDED POST: Python os.ftruncate() Method with example

Parameter Details

  • NA

Return Value

It returns current working directory of a process.

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.fsync() Method with example

Alright guys! This is where we are rounding up for this tutorial post. In my next tutorial, we are going to be discussing about the Python OS getcwdu() 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.


This post first appeared on Web Design Tutorialz, please read the originial post: here

Share the post

Python os.getcwd() Method

×

Subscribe to Web Design Tutorialz

Get updates delivered right to your inbox!

Thank you for your subscription

×