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

  1. @ECHO OFF
  2. REM This is CONTIG1.BAT
  3. REM
  4. REM CONTIG1.BAT tells you whether a particular file contains chunks
  5. REM ("blocks") that are not located physically beside each other on
  6. REM your disk.
  7. REM
  8. IF %1!==! GOTO OOPS
  9. ECHO Checking to see if %1 contains
  10. ECHO noncontiguous parts . . .
  11. CHKDSK %1 | FIND "contig"
  12. GOTO END
  13. :OOPS
  14. ECHO.
  15. ECHO Enter the name of a file after %0
  16. ECHO to see for noncontiguous blocks
  17. ECHO.
  18. :END
  19.