read from file after calling lseek64 - Linux
- by rursw1
Hi,
I'm trying to read a large file ( 2.0 GB).
The seeking is done by lseek64, then I tried to read using read(fileHandle, buffer, bufferLength)\ pread64(fileHandle, buffer, bufferLength, offset) - but both return with -1.
What could it be?
Thanks in advance!