home *** CD-ROM | disk | FTP | other *** search
/ Compu-Fix / Compu-Fix.iso / tutorial / dos5tut / bif.dat < prev    next >
Encoding:
Text File  |  1993-03-01  |  387 b   |  14 lines

  1. Explanation of the IF command. It is a 
  2. BATCH command.
  3.  
  4. This command lets you work with conditional 
  5. statements in your batch file.
  6.  
  7. Example:
  8.        If you want your batch file to display 
  9.        an error message if it can't find the 
  10.        Test.Bat file you use this in your
  11.        batch file:
  12.            if not exist test.bat then echo 
  13.            Can't find data file.
  14.