Hi All,
Just a quick question. I have a data file that is over 2GB and I need a file size reading.
below is my current code
Meth1
unsigned long GetFileLength ( FILE * fileName)
{
unsigned long pos = ftell(fileName);
unsigned long len = 0;
fseek ( fileName, 0L, SEEK_END...