home *** CD-ROM | disk | FTP | other *** search
/ Boldly Go Collection / version40.iso / TS / 10A / DOS5BAT.ZIP / DUPFILE.BAT < prev    next >
DOS Batch File  |  1991-11-02  |  1KB  |  41 lines

  1. @ECHO OFF
  2. REM This is DUPFILE.BAT
  3. REM
  4. REM DUPFILE.BAT searches for duplicate filenames in two disk or directories.
  5. REM It reports which files are in both places and which files are in the 
  6. REM current directory, but not which are in the second drive or directory
  7. REM specified. To use it, log into one directory or disk and specify the
  8. REM other after DUPFILE.
  9. REM Example: DUPFILE c:\dos
  10. REM
  11. IF %1!==! GOTO OOPS
  12. ECHO Checking files . . .
  13. FOR %%A IN (*.*) DO IF EXIST %1\%%A ECHO %%A is in both places.
  14. PAUSE
  15. FOR %%A IN (*.*) DO IF NOT EXIST %1\%%A ECHO %%A is NOT in %1
  16. GOTO END
  17. :OOPS
  18. ECHO This earches for duplicate filenames in two disk or directories.
  19. ECHO First, make sure %0.BAT is in a directory that your PATH knows about. 
  20. ECHO Then log into one of the directories or disk that you want to examine,
  21. ECHO and enter the name of the other directory or disk after %0.
  22. ECHO So to see a list of all filenames that are in both C:\DOS and B:,
  23. ECHO log in to C:\DOS and type:
  24. ECHO.
  25. ECHO %0 B:
  26. ECHO.
  27. ECHO Or log into B: and type:
  28. ECHO.
  29. ECHO %0 C:\DOS
  30. ECHO.
  31. ECHO To check 2 subdirectories called \DOS4 or \DOS5,
  32. ECHO log into \DOS4 and type:
  33. ECHO.
  34. ECHO %0 \DOS5
  35. ECHO.
  36. ECHO Or log into \DOS5 and type:
  37. ECHO.
  38. ECHO %0 \DOS4
  39. ECHO.
  40. :END
  41.