How can I figure out the size of a file, in bytes?
#include <stdio.h>
unsigned int fsize(char* file){
//what goes here?
}
|
feedback
|
|
Based on NilObject's code:
Changes:
If you want
On 32-bit systems you should compile this with the option | |||||||
feedback
|
|
Don't use Don't use IIRC the standard library defines If you're on windows, you should use GetFileSizeEx - it actually uses a signed 64 bit integer, so they'll start hitting problems with 8 exabyte files. Foolish Microsoft! :-) | |||||
|
feedback
|
|
If you're fine with using the std c library:
| |||||
feedback
|
|
Don't do this (why?): Change the definition to int so that error messages can be transmitted, and then use fseek() and ftell() to determine the file size.
| |||||||||||||||
feedback
|
|
And if you're building a Windows app, use the GetFileSizeEx API as CRT file I/O is messy, especially for determining file length, due to peculiarities in file representations on different systems ;) | |||
|
feedback
|
|
Matt's solution should work, except that it's C++ instead of C, and the initial tell shouldn't be necessary.
Fixed your brace for you, too. ;) Update: This isn't really the best solution. It's limited to 4GB files on Windows and it's likely slower than just using a platform-specific call like | ||||
feedback
|
|
A quick search in Google found a method using fseek and ftell and a thread with this question with answers that it can't be done in just C in another way. You could use a portability library like NSPR (the library that powers Firefox) or check its implementation (rather hairy). | ||||
|
feedback
|
|
You're going to need to use a library function to retrieve the details of a file. As C is completely platform independent, you're going to need to let us know what platform / operating system you're developing for! | |||
|
feedback
|
|
as long as you have "iostream" available, you can do the following:
unsigned int fsize(char* file){
long begin,end;
ifstream myfile (file);
begin = myfile.tellg();
myfile.seekg (0, ios::end);
end = myfile.tellg();
return end-begin;
}
is the idea. My C++ chops are a little creaky, so pushing a char* to an ifstream might not work as I wrote it... a good look at tellg() and seekg() will help you get the details. | |||
|
feedback
|
|
You can open the file, go to 0 offset relative from the bottom of the file with
the value returned from fseek is the size of the file. I didn't code in C for a long time, but I think it should work. | |||||
feedback
|