06-30-2010 12:00 AM
I am working on reporting module.
when i select Start date and End Date, then all files between these dates will be fateched in labview and build an array.
my file name format is:
21-02-2010.txt
22-02-2010.txt
.......
..........
please guide me on thathow i can increment start date to end date.........
06-30-2010 01:32 AM
Use "list folder" function. In pattern connect "*.txt". Before "*.txt". You can also define the date required like "02-2010*.txt" which will return the 2nd months report.
06-30-2010 06:00 AM
what you could do is the following:
1) Get a list of all filenames
2) Check one by one the file names if they are in the proper data range (see picture)
3) Build an array of filenames in range
Marco