Tagged Questions
10
votes
10answers
10k views
How do you determine the size of a file in C?
How can I figure out the size of a file, in bytes?
#include <stdio.h>
unsigned int fsize(char* file){
//what goes here?
}
2
votes
3answers
573 views
How do I get the file size of a large (> 4 GB) file?
How can I get the file size of a file in C when the file size is greater than 4gb?
ftell returns a 4 byte signed long, limiting it to two bytes. stat has a variable of type off_t which is also 4 ...
2
votes
4answers
1k views
Programatically determining file “size on disk” in advance
I need to know how big a given in-memory buffer will be as an on-disk (usb stick) file before I write it. I know that unless the size falls on the block size boundary, its likely to get rounded up, ...
0
votes
4answers
279 views
How to sniff the number of records in a binary file before reading into an array in the C programming language?
How do I tell in a better way how many records there are in a binary file before I open up the file and read the records into an array for example?
MyFile = fopen("DATA.dat", "rb");
i = 0;
while ...