home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / dbase / dirdbf.zip / DIRDBF.DOC < prev    next >
Text File  |  1993-03-04  |  2KB  |  53 lines

  1.  
  2. PROGRAM:    DIRDBF.COM Version 1.0
  3.  
  4. CONTACT: Keith P. Graham, BBS (914) 623-0039
  5.  
  6. SHAREWARE:    This program is free to use as long as it is
  7.         not offered for sale or is included with other
  8.         files which are for sale.
  9.  
  10. DESCRIPTION:
  11.         Creates a standardized DBF file which can be
  12.         Read by DBASE/FOX/CLIPPER/ETC.
  13.         The contents of the DBF are a list of files.
  14.         The Format of the DBF file is:
  15.  
  16. Field  Field name      Type       Width     Desc
  17.     1  NAME        Character      8     File name
  18.     2  EXT        Character      3     File extension
  19.     3  SIZE        Numeric       10     Size of file
  20.     4  DATE        Date           8     Date file last touched
  21.     5  TIME         Character      8     Time file last touched
  22.     6  ATTRIB         Character      6     Attributes of file
  23.     7  PATH         Character    128     Disk and path of file
  24.  
  25. USAGE:
  26.         DIRDBF dbfname[.dbf] [dirspec]
  27.  
  28. where: dbfname is the name of the dbf to be created (with or without
  29.        the extension .DBF).
  30.        dirspec is the disk,path and filespec of the files to be listed.
  31.        This can include wild cards. It defaults to *.*.
  32.  
  33. example:
  34.       dirdbf dlist c:\dos\*.exe
  35.       This creates a list of all exe's in the c:\dos dir and
  36.       creates dlist.dbf with this info.
  37.  
  38. TIME is in the format HH:MM:SS
  39.  
  40. PATH contains the complete disk and path of the file. The trailing
  41. backslash "\" is left off. On networks the disk is included as the
  42. server name in the format \\SERVER\.
  43.  
  44. The fields are filled in from information about the file. ATTRIB
  45. contains up to 6 attributes. They are positional.
  46. The following are the contents of ATTRIB and their meaning:
  47.     A = Archive bit
  48.     H = Hidden
  49.     S = System
  50.     R = Read only
  51.     D = Directory
  52.     V = Volume Label
  53.