filesize()
/* filesize() function in C - PHP Equivalent by sphinx */
long long int filesize(char *file) {
FILE *fp;
long long int i = 0;
fp = fopen(file,"rb");
while(fgetc(fp) != EOF) {
++i; }
fclose(fp);
return i;
}
example usage:
int main(void) {
printf("%ld", filesize("/path/to/filename"));
return 0;
}



[…] need filesize() […]
file_get_contents() | blog @ plinplan.com - uneg2nya team plinplan.com
February 12, 2008