On 1/30/2013 1:11 PM, MRAB wrote:
On 2013-01-30 17:15, noydb wrote:
I am looking for some guidance on using subprocess to execute an EXE
with arguments and an output. The below code works in that it returns
a 0 exit code, but no output file is created. I have tried a few
different versions of
oh DUH! that was it, just missing the -F. Thank-you!!
--
http://mail.python.org/mailman/listinfo/python-list
On 2013-01-30 17:15, noydb wrote:
I am looking for some guidance on using subprocess to execute an EXE with
arguments and an output. The below code works in that it returns a 0 exit
code, but no output file is created. I have tried a few different versions of
this code (used Popen instead, s
On Wed, Jan 30, 2013 at 9:15 AM, noydb wrote:
> I am looking for some guidance on using subprocess to execute an EXE with
> arguments and an output. The below code works in that it returns a 0 exit
> code, but no output file is created. I have tried a few different versions
> of this code (us
To add on, I need to eventually write a script that takes input, feeds it into
this exe, and takes the output file to perform more 'tools'/manipulations on
it. Is call or Popen called for, why? Or maybe some other module???
--
http://mail.python.org/mailman/listinfo/python-list
I am looking for some guidance on using subprocess to execute an EXE with
arguments and an output. The below code works in that it returns a 0 exit
code, but no output file is created. I have tried a few different versions of
this code (used Popen instead, some stderr/stdout), but no luck. Ca