04-15-2021 12:47 PM
I have a VI that processes other VIs. I want an input that's an array of folders to ignore; and I want the default value for the array to contain an element the points to LabVIEW folders. Something similar to this:
But I don't really want <vilib>, I want the parent of <vilib>. Logically, that should be: <vilib>:\..
But that doesn't work. Is there some sequence of characters I can put in a path that represents the parent of a symbolic path?
04-15-2021 01:15 PM
04-15-2021 04:34 PM - edited 04-15-2021 04:37 PM
@Darren wrote:
If your end goal is to get to the LabVIEW folder, can you use the App.Dir property?
Not quite. My end goal is to have an input that's an array of paths, with one of them defaulting to the LabVIEW folder. Also, App.Dir isn't necessarily the LabVIEW folder.
04-15-2021 04:42 PM
@paul_cardinale wrote:
Not quite. My end goal is to have an input that's an array of paths, with one of them defaulting to the LabVIEW folder. Also, App.Dir isn't necessarily the LabVIEW folder.
So define your own symbolic path (say, <appdir>:\), and whenever you get that value, convert to an absolute path using the App.Dir property?