Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_ffsize() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_FFSIZE()

 DESCRIPTION

 C_FFSIZE() returns the size of the file currently in the data
 buffer after a previous call to C_FINDFIRST() or C_FINDNEXT().

 NOTES

 Before calling C_FFSIZE(), a previous call to C_FINDFIRST() or
 C_FINDNEXT() must be made to locate the file and place information
 into the data buffer.

 SYNTAX

 C_FFSIZE()

 PARAMETERS

 There are no parameters.

 RETURNS

 C_FFSIZE() returns the size in bytes of the current file in the
 data buffer.

 EXAMPLES

 && Display all the "normal" files in the current directory
 xfile = c_findfirst("*.*","N")
 ...
 ...
 do while !empty(xfile)
   ? xfile                            && display file name
   ? c_ffsize()                       && display file size
   xfile = c_findnext("*.*","N")
 enddo


See Also: C_FINDFIRST() C_FINDFILE() C_FINDCNT() C_FFDATE() C_FFATTR()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson