NDUMP.IXP
It would be better something like:
@echo off
copy %1 pardrive:\pardirectory\filename > nul
if errorlevel 1 goto end
delete %1 > nul
:end
The "> nul" causes the messages to go to the bit bucket and not get displayed
in the 3D Studio screen. The errorlevel checks for a problem with the copy
command. If the copy was not successful, skip the delete command. Meanwhile,
I will check why the delete from within NDUMP failed. Note that I to the same
test above within NDUMP. If the copy command returns an error I will not
delete the file.