home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / VTREE2.ZIP / VTREE2.δ < prev   
Encoding:
Text File  |  1988-07-19  |  1.5 KB  |  34 lines

  1. VTREE2.COM
  2.  
  3. FUNCTION:  Like the DOS TREE command, and similar to PC Magazine's VTREE,
  4.            but gives you a graphic representation of your disk hierarchical
  5.            tree structure AND the number of files and total bytes in each
  6.            tree node (optionally can be omitted).  Also allows starting at
  7.            a particular subdirectory rather than displaying the entire
  8.            drive's tree structure.  Redirection of output and input is an
  9.            option.  Version 1.3, 6-27-88.
  10.  
  11. USAGE:     VTREE2 {path} {/t} {/r}
  12.  
  13.            /t or /T omits the number of files and total bytes information.
  14.            /r or /R activates redirection of input and output.
  15.  
  16. NOTES:     1.  To print out the tree structure, enter:
  17.  
  18.                VTREE2 /r > PRN
  19.  
  20.            2.  You must have ANSI.SYS as a device in your CONFIG.SYS file.
  21.  
  22.            3.  If the tree structure is more than 5 levels of subdirectory
  23.                deep, you will get an error message at the 6th or subsequent
  24.                levels, but processing will continue for prior levels.
  25.  
  26.            4.  Because of the redirection capability, VTREE2 is
  27.                substantially slower with the redirection option (e.g., 7.75
  28.                secs. for a big tree vs. 3.73 secs. if the redirection
  29.                option is not used), but it is only slightly slower than
  30.                VTREE when displaying file and byte information, and
  31.                slightly faster than VTREE when displaying only the same
  32.                information that VTREE shows.
  33.  
  34. «═»