Howto Launch a windows application ?

Hyuga hyugaricdeau at gmail.com
Mon Oct 8 10:45:13 EDT 2007


On Oct 3, 5:39 pm, stef mientki <stef.mien... at gmail.com> wrote:
>
> from subprocess import *
>
> cmd =[]
> cmd.append ( 'D:\\PIC-tools\\JALxxx\\jalv2_3.exe' )
> cmd.append ( '-long-start' )
> cmd.append ( '-d')
> cmd.append ( '-clear' )
> cmd.append ( '-sD:\\PIC-tools\\JAL\\libs2' )
> cmd.append ( 'd:\\pic-tools\\jal\\programs\\test_rs232\\test_rs232_hw.jal' )
> cmd.append ( '>d:\\data_actueel\\d7_test_browser\\temp.log' )

This is sort of aside from your original question, but I should also
point out how unnecessary all those 'cmd.append's are.  You can
initialize the list all at once simply like so:

cmd =['D:\\PIC-tools\\JALxxx\\jalv2_3.exe',
      '-long-start',
      '-d',
      '-clear',
      '-sD:\\PIC-tools\\JAL\\libs2',
      'd:\\pic-tools\\jal\\programs\\test_rs232\\test_rs232_hw.jal',
      '>d:\\data_actueel\\d7_test_browser\\temp.log']

Hyuga




More information about the Python-list mailing list