home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / DLFIND12.ZIP / DLFIND.DOC next >
Text File  |  1992-10-06  |  2KB  |  52 lines

  1.  
  2.                           DLFIND 1.2 (10/5/92)
  3.                      Copyright 1992 Samuel H. Smith
  4.  
  5.      Finds filespecs using PCBoard style DLPATH.LST directory list.
  6.  
  7.  
  8. Usage: dlfind [-e] FILESPEC ... FILESPEC
  9. Specify one or more wildcard filespecs on the command line.
  10.  
  11. -E option specifies that FILESPEC.* should be checked, regardless of the
  12. actual .EXT specified.
  13.  
  14. On exit, ERRORLEVEL is set to the number of matches.
  15.  
  16. Please execute the command:
  17.    SET DLPATH=[full drive, directory and filename of your DLPATH.LST file]
  18. before using DLFIND.  For example:
  19.    SET DLPATH=C:\PCB\DLPATH.LST
  20.    DLFIND PKZ110.*
  21.  
  22. I recommend you place the SET DLPATH statement in your AUTOEXEC file so you can
  23. later use DLFIND at any time you wish.
  24.  
  25. You can use DLFIND to easily locate a file in any of your BBS download
  26. directories.  All matching files are written to standard output.
  27.  
  28. You can use DLFIND to find duplicates with alternate file .EXT
  29. extentions.  For example,
  30.         DLFIND -E FILE.ZIP
  31.         IF ERRORLEVEL 1 ECHO DUPLICATION FOUND!
  32. This will report "DUPLICATION FOUND" if FILE.ARJ, FILE.GIF, etc, are
  33. present in a download directory.
  34.  
  35. The DLPATH.LST file is a simple text file with each line containing one
  36. full directory specification.  For example:
  37.  
  38. V:\BOOST\
  39. U:\DL4\
  40. U:\DL3\
  41. U:\DL2\
  42. U:\DL1\
  43. J:\UPLOAD\
  44.  
  45.  
  46.                             REVISION HISTORY
  47.  
  48. 10/4/92 Version 1.2
  49.      Added logic to strip a drive:\path from the filespec.  Otherwise no
  50.      matches were ever reported when using under ProDoor's PROUT1.BAT
  51.      example files.
  52.