The subject lines says it all! Do Windoze or PB impose a limit?
I have a binary file of up to 64 MByte containing records from up to 50 measuring instruments. I want to extract the records for each instrument and write them into separate files. So:
I can scan my source file 'N' times and extract one individual instrument's readings; this requires just two files to be open at once. This is safe, but I suspect is slow.
OR:
I can scan the source file once and open a destination file for each instrument; closing them all at the end.
The reason I am a bit nervous about having too many files open at once is that there was a limit imposed in GFA BASIC (RIP old Friend) that may have been due to a feature of Windows... I don't know.