Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Find and Replace in huge text file
Message
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01053411
Message ID:
01053454
Views:
24
I'm not sure I understand you. What's the max record len in the file?

>That works fine, except for the carriage return.
>I need to know if FGETS had got 8192 byte (No need for carriage return - use fwrite, or FGETS had less than 8192 byte, so I need to add carriage return FPUTS).
>any help on that.
>
>>You can use LLFF. A sample code (w/o any error handling)
>>lhIn = FOPEN(lcFileIn)
>>lhOut = FCREATE(lcFileOut)
>>DO WHILE NOT FEOF(lhIn )
>>  lcLine = FGETS(lhIn,8192)
>>  * Processing here
>>  = FPUTS(lhOut, lcLine)
>>ENDDO
>>FCLOSE(lhIn)
>>FCLOSE(lhOut)
>>
>>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform