reset.bat 162 B

12345678910
  1. @echo off
  2. set FILE="C:\temp\MotorTestTool\server1.ttcfg"
  3. :: Check file
  4. if exist %FILE% (
  5. del %FILE%
  6. echo Finish:%FILE%
  7. ) else (
  8. echo Error:%FILE%
  9. )