08-16-2005 10:32 AM
08-16-2005 11:12 AM
pattern: RESTRICTS the files and directories returned to those whose names match pattern.
This is the definition of "pattern" parameter of "List Directory" function.![]()
08-16-2005 11:40 AM
It seems to me like "calib_*CAL*_RAW_CH1.CSV" should find "calib_LCAL17_RAW_CH1.CSV" as a match. If you are concatenating "calib" with the rest of the string, make sure that there is no spaces before or after "calib" or the rest of the string on the concat output. Put a probe or indicator on the concat output, and place your mouse cursor inside the indicator. Move it all the way from left to right with the keyboard arrow keys. You will see if there are any spaces in the string.
08-16-2005 01:21 PM
08-16-2005 01:23 PM
08-16-2005 01:31 PM
calib_LCAL17_RAW_CH1.CSV
calib_SCAL11_RAW_CH1.CSV
, you could have a mask like
calib_?CAL??_RAW_CH?.CSV
Unlike "*", the "?" spec refers to one and only one character position. Thus you can use more than one "?".
Blog for (mostly LabVIEW) programmers: Tips And Tricks
08-16-2005 02:50 PM
08-16-2005 03:16 PM
Blog for (mostly LabVIEW) programmers: Tips And Tricks
08-16-2005 03:32 PM
08-16-2005 06:05 PM