Darren Dale wrote: > I am sure this has been covered in the documentation, but I havent found > it. Could anyone tell me how to change directories from within the > python shell? > > Thanks import os os.chdir("newpath") http://www.python.org/doc/current/lib/os-file-dir.html HTH, Andrew