Return
Styles:
Pseud0ch
,
Terminal
,
Valhalla
,
NES
,
Geocities
,
Blue Moon
.
Entire thread
get file length
1
Name:
Anonymous
2009-04-17 4:56
Whats the most crossplatform way to get file length in C?
8
Name:
Anonymous
2009-04-17 6:40
FILE *f;
long len;
f = fopen("file", "r
b
");
fseek(f, 0, SEEK_END);
len = ftell(f);
fclose(f);
Newer Posts
Don't change these.
Name:
Email:
Entire Thread
Thread List