Home Forums Bug Reports qucsconv Reply To: qucsconv

#666
zhu
Participant

    The purpose is to import measurement data from a CSV file to QucsStudio environment in *.dat format. The issue has been fixed: pathnames with spaces must be enclosed in double quotes.

    THIS DOES NOT WORK:

    cd(location of R6.csv)

    pwd = D:\hicumL2\CSV_data %R6.csv resides here

    dostxt = ‘C:\Programme\QucsStudio_332\QucsStudio\bin\qucsconv.exe -i R6.csv -if csv -of qucsdata -o C:\Documents and Settings\zhu\qucs3\DC_prj\full_R6.dat’;

    dos(dostxt);

    THIS WORKS:

    cd(location of R6.csv)

    pwd = D:\hicumL2\CSV_data %R6.csv resides here

    dostxt = ‘C:\Programme\QucsStudio_332\QucsStudio\bin\qucsconv.exe -i R6.csv -if csv -of qucsdata -o “C:\Documents and Settings\zhu\qucs3\DC_prj\full_R6.dat”‘;

    dos(dostxt);