cleanup.bat

このバッチ ファイルは、サンプル プログラムを実行することによって作成されたさまざまなファイルを削除します。このファイルには、次のような一連のファイル削除コマンドが含まれています。

 @echo off
echo Cleanup started ...
if exist example*.int del example*.int
if exist example*.exe del example*.exe
if exist example*.lst del example*.lst
if exist example*.xml del example*.xml
if exist address*.xml del address*.xml
if exist table1.xml del table1.xml
if exist table2.xml del table2.xml
if exist table3.xml del table3.xml
if exist table4.xml del table4.xml
if exist stamp\*.xml rmdir stamp /q /s
echo finished cleanup.

このバッチ ファイルにパラメーターはありません。実行するには、コマンド ラインで次のコマンドを入力します。

cleanup