One warning: If you do a chdir command (for example) or define a dos
environment variable, etc, in a shell script -- using any of the subprocess
or os.system or such commands -- it will only affect the child procees which
is created for the call, not the process you make the call from.  This is
not what you are trying for in most cases.
  The os.chdir() function and its friends will do what you probably want.
--
VC
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to