Re: seeking thru a file

2009-06-26 Thread Bruno Desthuilliers
Mag Gam a écrit : I have a compressed CSV gziped file. Then gunzip it first... I was wondering if it is possible to seek thru a file For example: I want to load the first 100 lines into an array. Process the data Seek from 101 line to 200 lines. Process the data (remove lines 0 - 100) from

Re: seeking thru a file

2009-06-26 Thread Nils Rüttershoff
Hi Mag, Mag Gam wrote: > I have a compressed CSV gziped file. I was wondering if it is possible > to seek thru a file > > For example: > > I want to load the first 100 lines into an array. Process the data > > Seek from 101 line to 200 lines. Process the data (remove lines 0 - > 100) from memory >