05-03-2023 01:37 AM
Hello, may I know the path directory of the Write Delimited Spreadsheet VI file? I couldn't find it.
Solved! Go to Solution.
05-03-2023 02:45 AM
The default filepath will be to generate one via a dialog, otherwise, it's whatever you specify at the filepath input
05-03-2023 02:46 AM
What path directory are you referring at? Windows applications are not supposed to work with relative paths, whose relativeness is totally uncontrollable in a multitasking/multithreading environment, but instead you are supposed to pass absolute paths to all LabVIEW File IO functions. They will almost all actively refuse relative paths as "invalid argument"
05-03-2023 06:58 AM
I was referring to the path directory containing the folder LabVIEW was installed.
05-03-2023 07:15 AM
@solarfacility_user wrote:
I was referring to the path directory containing the folder LabVIEW was installed.
What for? You should not write any files in there. While this directory is not write protected for legacy reasons, it is not meant to store your own files in.
05-03-2023 07:39 AM - edited 05-03-2023 07:41 AM
Are you asking where the VI itself is saved?
That in <LabVIEW>\vi.lib\Utility\file.llb\Write Delimited Spreadsheet (DBL).vi
The location of the LV folder could depend on choices you make when installing, but by default it will be the program files folder, under National Instruments or NI.
It should be pointed out that it's much easier to find things through the palettes (the File I/O palette, in this case) or by searching or calling quick drop (Ctrl+Space).
05-03-2023 08:32 AM
Did this VI exist in LV 2015?
05-03-2023 09:06 AM
05-03-2023 09:32 AM
Until quite a few versions ago, the functionality was in "write to spreadsheet file", which still exist as legacy VI. Note that "write delimited spreadsheet" is polymorphic, and consists of several VIs, depending on what you wire to it (array of DBLs, array of strings, etc.)
It is trivial to find its path by using the context help, but that should be completely irrelevant for all practical purpose and depends on your LabVIEW version and bitness.
So why exactly do you need that path???
05-03-2023 11:43 AM
@altenbach wrote:
Until quite a few versions ago, the functionality was in "write to spreadsheet file", which still exist as legacy VI. Note that "write delimited spreadsheet" is polymorphic, and consists of several VIs, depending on what you wire to it (array of DBLs, array of strings, etc.)
It is trivial to find its path by using the context help, but that should be completely irrelevant for all practical purpose and depends on your LabVIEW version and bitness.
So why exactly do you need that path???
I would like to know as well. There shouldn't be any reason to need to know unless:
😄