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

 DESCRIPTION

 C_FINDNEXT() returns the addition files found matching the given
 file specification and attributes specified by C_FINDFIRST().  A
 data buffer is loaded with information about the file such as the
 size, date, time, and attributes.  The C_FFSIZE(), C_FFDATE(),
 C_FFTIME(), and C_FFATTR() functions retrieve the information.

 NOTES

 Before calling C_FINDNEXT(), a call must be made to C_FINDFIRST()
 to locate the first file found matching the file specification and
 attributes given.  The C_FINDNEXT() function uses the information
 from C_FINDFIRST() to continue the file search.

 SYNTAX

 C_FINDNEXT()

 PARAMETERS

 There are no parameters.

 RETURNS

 C_FINDNEXT() returns the name of the file found matching the file
 specification and attributes specified by the C_FINDFIRST function,
 or null ("") if no file is found.

 EXAMPLES

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


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

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