kaustubh joshi wrote: > Hello friends, > How do we carry out the command "*cd ..*" in > python?
import os os.chdir('..') But think carefully before doing this. Some functions may be confused if you change directories while they are running. You may be better off staying in the same directory, and adjusting the path names to the files as you work with them. -- Steven -- http://mail.python.org/mailman/listinfo/python-list