Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FUNCky - <b>name:</b> <b>findnext() - find next matching file</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  Name:     findnext() - find next matching file
  Usage:    <string> = findnext()
  Params:   none
  Returns:  string equal to next filename that matches skeleton that
            was sent to findfirst()

 ---------------------------------- Example ---------------------------------

                 nfiles = filecount("*.dbf")
                 if nfiles > 0
                      declare dbfarray[nfiles]
                      temp = findfirst("*.dbf")
                      for n = 1 to nfiles
                           dbfarray[n] = temp
                           temp = findnext()
                      next
                 endif

  Note:     You must only use findnext() after you've done an initial
            findfirst().


See Also: findfirst() findsize() finddate() findtime()

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