When you are generating report
in your application then everytime
you run it then it will automatically
create temp files.
To avoid these junk files you
have to kill the TEMP files.
Code Syntax: KILL "Directory\Temp filename"
Sample (delete all temp files):
KILL "D:\OMI FILES\Project\*.TMP"
Sample (specific temp file):
KILL "D:\OMI FILES\Project\Report.TMP"