home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff284.lzh / RecurDir / ReadMe < prev    next >
Text File  |  1989-11-27  |  876b  |  31 lines

  1.   This routine is used to recursively decend the file system tree from
  2.   our current directory location or some other specified directory path.
  3.  
  4.   It prints the full relative path (relative to the path you supply to
  5.   the CLI) to each file on a line by itself to your CLI.  This is
  6.   useful as an aid in doing recursive directory ZOOing.  For example
  7.   to zoo the complete contents of DF0: you can do:
  8.  
  9.     mydir df0: | zoo aI completedisk
  10.  
  11.   and if you don't have pipes you can use:
  12.  
  13.     mydir >temp df0:
  14.     zoo <temp aI completedisk
  15.  
  16.   The resulting zoo file will contain the full contents of the disk
  17.   in DF0: and may be extracted using a zoo command similar to
  18.  
  19.     zoo x// completedisk
  20.  
  21.   Source code is included as an example of how to scan the file system.
  22.  
  23.   Stephen Vermeulen
  24.  
  25.     PO Box 3295, Station B
  26.     Calgary, Alberta,
  27.     CANADA, T2M 4L8
  28.  
  29.   November 1989.
  30.  
  31.