01-31-2014 11:10 PM
Hello,
I am running labview exe from a perl script. I am actually measuing the signal measurements from the oscilloscope and then writing that data into an excel sheet. Using the perl script I am getting the directory for creating the excel sheet and write down the measurements. When I run the script and the application is called I get an error saying Error 1430,Open/Create/replace file . Write to spread sheet.vi and Possible reason
Error 1430: The path is empty or relative. You must use an absolute path.
Can anyone help me get an understanding of this error.
Thanks
Bharath
02-03-2014
12:21 PM
- last edited on
03-04-2026
03:37 PM
by
Content Cleaner
Hi Bharath,
Here a little information about the error code:
https://knowledge.ni.com/KnowledgeArticleDetails?id=kA00Z000000P9E3SAK&l=en-US
Some things to wonder, how are you assigning (or creating) the path to the excel file you're creating in LabVIEW?
02-03-2014 06:24 PM
Hello,
I have tested my labview module independently using the path and excel sheet name, it works fine and I get the output as needed. But after I have build the exe and then calling the labview module from the script with the input arguments fed in to the .exe file I get this error 1430. I was wondering if it was a build issue of not specifying the location??
Thanks
Bharath
02-05-2014
09:05 AM
- last edited on
03-04-2026
03:38 PM
by
Content Cleaner
Bharath,
How are you defining into the LabVIEW code the terminals of the OpenCreateReplace function? have you checked this?
https://www.ni.com/docs/en-US/bundle/labview-api-ref/page/functions/open-create-replace-file.html
02-07-2014 12:00 PM
Bharath,
Check the link of my last email and see the
File path section: file path (use dialog) is the absolute path to the file. If you do not wire file path (use dialog), the function displays a dialog box from which you can select a file. If you specify an empty or relative path, this function returns an error.
Here something you could use to connect to that terminal.
http://zone.ni.com/reference/en-XX/help/371361H-01/glang/application_directory/
Regards
05-05-2014 06:58 PM
Thanks for the information.
Bharath