Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using labview 8.5.1

I have the path to a file stored as a unix-style string in a text file. (e.g. the file contains the string /refs/heads/master )

I would like to convert this to a path in LABVIEW, but the string-to-path function assumes that I have a windows style path string (e.g. \refs\heads\master )

The specific context in which this comes up is I want to log a git hash code with collected data so I will always know the specific version of the software I am using, and git stores files as unix-style-strings.

A quick solution is to find&change all / to \, but this is inelegant & also will cause the VI to crash if it is ever run on OSX or any other OS that uses unix style formatting.

Is there a way to force the string-to-path VI to use a specific OS style?

(suggested tag: path-formatting)

share|improve this question

1 Answer

up vote 5 down vote accepted

You can convert the string to an array of strings (by using the / as delimiter) and convert the resulting array into a LabVIEW Path datatype (which internally is an array of strings):

enter image description here

share|improve this answer
Great. This is a nice solution. Thanks. – Marc Sep 9 '11 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.