Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

get file length

Name: Anonymous 2009-04-17 4:56

Whats the most crossplatform way to get file length in C?

Name: Anonymous 2009-04-17 6:40

FILE *f;
long len;
f = fopen("file", "rb");
fseek(f, 0, SEEK_END);
len = ftell(f);
fclose(f);

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List