Re: command line path

2005-09-05 Thread Tim Roberts
Lee Harr <[EMAIL PROTECTED]> wrote: >On 2005-09-05, mclaugb <[EMAIL PROTECTED]> wrote: >> I am trying to pass the name of several files to a python script as command >> line arguments. When i type in >> >> python ImportFiles_test.py C:\Program Files\National Instruments\LabVIEW >> 7.1\project\c

Re: command line path

2005-09-05 Thread Lee Harr
On 2005-09-05, mclaugb <[EMAIL PROTECTED]> wrote: > I am trying to pass the name of several files to a python script as command > line arguments. When i type in > > > python ImportFiles_test.py C:\Program Files\National Instruments\LabVIEW > 7.1\project\calibration\FREQUENCY_ > 13.CSV > > The fo

Re: command line path

2005-09-05 Thread Diez B. Roggisch
> > I debugged a little and what is happening is the space in "c:\Program Files" > and "...\National Instruments..\" is being parsed as separate arguments and > i only wish for them to be parsed as one. > > How do I get pass a path string containing spaces? Surround it with double quotes. This

command line path

2005-09-05 Thread mclaugb
I am trying to pass the name of several files to a python script as command line arguments. When i type in python ImportFiles_test.py C:\Program Files\National Instruments\LabVIEW 7.1\project\calibration\FREQUENCY_ 13.CSV The following error results: C:\Program Traceback (most recent call la