home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 July / PCpro_2005_07.ISO / files / freeware / hardcopy / hcf.exe / basic / Basic_File_001.bas < prev    next >
Encoding:
BASIC Source File  |  2003-11-26  |  126 b   |  6 lines

  1. File.Find( "*" )    ' All files in the current directory
  2.  
  3. For i = 0 To File.NumberOfElements - 1
  4.     Print File( i ).Name
  5. Next
  6.