I know I can get file size of FILE * by fseek, but what I have is just a INT fd.
How can I get file size in this case?
|
You can use
|
|||
|
|
|
fstat will work. But I'm not exactly sure how you plan the get the file size via fseek unless you also use ftell (eg. fseek to the end, then ftell where you are). fstat is better, even for FILE, since you can get the file descriptor from the FILE handle (via fileno).
|
||||
|
|
fdopento get aFILE*out of a file descriptor. – pmg Jun 30 '11 at 15:46