|
-
Sep 8th, 2012, 08:40 PM
#11
Addicted Member
Re: VB6 - Huge (>2GB) File I/O Class
actually something like this works fine
Open strFile For Binary As #intFile
strText = String$(LOF(intFile), 32)
Get #intFile, 1, strText
Close #intFile
strLine() = Split(strText, vbCrLf)
lngLineCount = UBound(strLine)
then I read the lines from the array.. later.. I read the lines starting at the last line I read based on that same array which is stored as a variable. I was just trying to see if I could get a little more speed using this method.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|