home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 November / CPNL0711.ISO / beeld / screen / hcf.exe / Basic / Basic_File_004_Display_Time.bas < prev    next >
BASIC Source File  |  2003-11-26  |  170b  |  8 lines

  1. File.Find( "i*" )    ' All files starting with "i"
  2.  
  3. For i = 0 To File.NumberOfElements - 1
  4.     Print File( i ).Name
  5.     Print "         Time: ", File( i ).Time
  6.     Print
  7. Next
  8.