Shinobi Library - File System Function

gdFsGetFileSize

Gets file size information

FORMAT

Bool gdFsGetFileSize( gdfs, *fsize )
GDFS gdfs
Sint32 *fsize

PARAMETER

 gdfs  File handle 
 *fsize  Pointer that returns results 

RETURN

 true  Succeeded 
 false  Failed 

DESCRIPTION

Gets file size information. Information is returned in bytes. If acquisition fails because a handle is wrong, etc., false is returned.


EXAMPLE

GDFS gf;
Sint32 flen;
gf = gdFsOpen("TEST.BIN", NULL);
gdFsGetFileSize(gdfs, &flen);

gdFsGetFileSize
COPYRIGHT © SEGA ENTERPRISES, LTD., 1998,1999