home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug036.arc / D.DOC < prev    next >
Text File  |  1979-12-31  |  2KB  |  58 lines

  1.              DIRR.COM  (ALPHABETIZED DIRECTORY LISTING)
  2.              ------------------------------------------
  3.  
  4.      This program lists the directory in four vertically alphabetized
  5. columns.  It also shows the length of each file.  It turns up an initial
  6. new line prior to the listing and another new line after the listing.
  7. It has a summary line which shows the following information:
  8.  
  9.      1)  Disk drive in use
  10.      2)  Length of disk  (948k for DS, DD  --  241k for SS, SD)
  11.      3)  Number of files used (does not include extents used)
  12.      4)  Length of files used
  13.      5)  Number of files / extents remaining
  14.      6)  Amount of disk space remaining
  15.  
  16.  
  17.      Address 0784H controls the space between the file type and the
  18. length of the file displayed.  At present it is:
  19.  
  20.           0784  03
  21.  
  22.      If you want more space after the file type, increase that to 04
  23. or even 05.  The following table shows the width of the display:
  24.  
  25.           03  uses  69  columns
  26.           04  uses  73  columns
  27.           05  uses  77  columns     
  28.  
  29.  
  30.      If you want the display to stop with a full screen and wait until
  31. the space bar is depressed before it continues, change:
  32.  
  33.           0103H  from   80 to 16
  34.  
  35.      This byte sets the number of directory lines that will show on the
  36. CRT before the display stops with "Hit SPACE" to continue.  16H shows
  37. twenty-three lines.  If you want the complete directory to show without
  38. stopping (it looks much better if making a hard copy print to put in
  39. the jacket), use a large number.  Using '80H' would show 512 filenames
  40. before stopping.  (You are unlikely to have that many.  If you did, you
  41. could make the number even larger.)
  42.  
  43.      Byte 0789H is the "k" after each file length.  You can eliminate
  44. that (gaining four additional columns) by changing from  6B to 00.  It
  45. may appeal to some, as gives a less cluttered appearance.
  46.  
  47.  
  48.  
  49.                                         Irvin M. Hoff
  50.                                         Los Altos Hills, CA  94022
  51.                                         3 April 1982
  52.  
  53.  
  54.  
  55. P.S.  I did not write this program, nor do I have the source code.
  56.       However I did modify it extensively to suit my needs and then
  57.       called it DIRR.
  58.