The method chdir() changes the current working directory to the given path.It returns None in all the cases.
Parameters :
os.chdir(path)
#!/usr/bin/python import os path = "/usr/tmp" # Check current working directory. retval = os.getcwd() print "Current working directory %s" % retval # Now change the directory os.chdir( path ) # Check current working directory. retval = os.getcwd() print "Directory changed successfully %s" % retval
This method does not return any value.