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_ffdate() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_FFDATE()

 DESCRIPTION

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

 NOTES

 Before calling C_FFDATE(), 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_FFDATE()

 PARAMETERS

 There are no parameters.

 RETURNS

 C_FFDATE() returns the date as a date variable 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_ffdate()                     && display file date
   xfile = c_findnext("*.*","N")
 enddo


See Also: C_FINDFIRST() C_FINDFILE() C_FINDCNT() C_FFTIME() C_FFSIZE()

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