altenbach
unread,Aug 15, 2008, 2:10:08 PM8/15/08You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
As I said, the file IO has changed quite a bit since LabVIEW 7.0. Since my VI is in LabVIEW 8.5, you won't be able to open it. Still you should be able to create it from scratch. - Create a while loop
- define the folder containing your file (e.g. using the file dialog or a diagram constant).
- Open a new file for the output.
- In the loop, create the file names according to the format pattern
- If the file does not exist (e.g. "file info" generates an error), do nothing and stop the loop
- if the file exists, read as a plain text string and append it to the new file.
- Repeat until you run out of matching files.
- Close the new file.
(You could also use "list files" with e.g. "data_*.txt" as pattern and simply autoindex over the file names in a FOR loop.) See how far you get. If you think you are close, attach your work and we find out what else is needed. ;)Message Edited by altenbach on 08-15-2008 11:00 AM