fsize - get the size of a file
SYNOPSIS
DESCRIPTION
fsize
uses the
fstat
system call to obtain the size of the file which has been
associated with file descriptor
fd,
such as that returned by
open
(2).
RETURN VALUE
fsize
returns -1 if
fstat
fails; otherwise, the length of the file in bytes
is returned as a long number.
SEE ALSO