I need to get file size of file over 2GB size. (testing on 4.6GB file) It there any way to do this without external program?
Current status:
- filesize(), stat() and fseek() fails
- fread() and feof() works
There is posible to get file size by reading file content. (extremely slow!)
$size = (float) 0;
$chunksize = 1024 * 1024;
while (!feof($fp)) {
fread($fp, $chunksize);
$size += (float) $chunksize;
}
return $size;
I know how to get it on 64bit platforms (using fseek($fp, 0, SEEK_END) and ftell()), but I need solution for 32bit platform.
In other words, how to seek in large file to its end and get pointer position? (fseek() and ftell() not working)
Thank you very much for your time! Honza Kuchar
if($size>=0x1000000) { $upper+=1; $size-=0x1000000 }. Your file reading approach is certainly functioning, but not practical. Sadly PHPs fseek(SEEK_CUR) interface does not return the amount skipped, else it would be easier. – mario Mar 31 '11 at 14:54disk_free_space()DOES have skew errors in on large numbers, however, due to its nature, its not possible to be 100% precise anyway. Individual filesystem implementations, cluster sizes, etc, may affect the ACTUAL usable space. So,disk_free_space()suffers from the inescapable float skew, but it doesn't NEED to be accurate at that level. File sizes are exact numbers, no error tolerance. Screw up the file size, and you will lose data. – Unsigned Mar 31 '11 at 22:22