home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 137.lha / filefind / ff12.dox < prev    next >
Text File  |  1986-11-20  |  2KB  |  41 lines

  1.  
  2.     //
  3. \\ // 
  4.  \X/
  5.  
  6. FileFind Amiga! Version 1.2    (4-22-88)
  7. Copyright 1988 by Ray Lambert
  8.  
  9. Usage: FF [DRIVE:[PATH/]]FILENAME ...
  10.   [DRIVE:] = Optional drive to scan
  11.   [PATH/]  = Optional path to begin scan at
  12.   FILENAME = File to search for (Wildcards allowed)
  13.  
  14.   FileFind will search all directories beginning with the specified directory
  15. (Default = Root) on the specified drive (Default = Currently logged drive)
  16. for  all files which match the specified filename. Wildcards are allowed in
  17. the filename. Version 1.2 now supports MS-DOS wildcards ( * and ? ), as well
  18. as AmigaDOS ( #? ), and it also accepts multiple command line arguments (in
  19. keeping with the spirit of ARP!) Version 1.2 is a full 55% faster than
  20. Version 1.0 mainly because of the use of AmigaDOS' Examine() and ExNext()
  21. instead of Lattice C's dfind() and dnext(). I was able to use a recursive
  22. algorithm to read the directory tree with AmigaDOS' functions that I wasn't
  23. able to use with Lattice's functions. To re-compile FF12.c simply boot with
  24. Lattice and type EXECUTE FF12.C
  25.  
  26.   FileFind will not compile directly with Manx because it uses some functions
  27. that are specific to Lattice.
  28.  
  29. Usage Examples:
  30.   To search current drive for file FF.C             type: FF FF.C
  31.   To search drive df1: for file FF.C                type: FF DF1:FF.C
  32.   To list all .c files on drive df1:                type: FF DF1:*.C
  33.   To list all .c files on drive df1: AND df0:       type: FF DF1:*.C DF0:*.C
  34.   To list all .c files on drive df1: in directory
  35.     df1:Source and all subdirectories of df1:Source type: FF DF1:SOURCE/*.C
  36.  
  37.     //
  38. \\ // 
  39.  \X/
  40.  
  41.