I want to execute my logfile analyzer from within Zope and then access the result files through LocalFS. The latter part is very easy, of course, and works fine, but is there a simple solution to executing an external program? (lying under INSTANCE_HOME) Thank you very much in advance, Danny
but is there a simple solution to executing an external program? (lying under INSTANCE_HOME)
An external method should work. http://www.python.org/doc/current/lib/os-process.html os.system is the command you want to use.
thanks steve
-----Ursprüngliche Nachricht----- Von: Steve Drees [mailto:drees@the-bridge.net] Gesendet: Donnerstag, 29. März 2001 11:34 An: Danny William Adair; zope@zope.org Betreff: RE: [Zope] External program execution - simple solution?
but is there a simple solution to executing an external program? (lying under INSTANCE_HOME)
An external method should work.
http://www.python.org/doc/current/lib/os-process.html
os.system is the command you want to use.
participants (2)
-
Danny William Adair -
Steve Drees