Does this bat file make any sense to you guys?
I got it as a reply from ieX.
if you really wanted, you could make a batch file to accept command line input (the path/filename), launch the burning program and pass the input along, then delete the files (again by using the input provided)
ex:
-----------
@echo off
if not %1 goto end
cd "program files\nero"
nero %1
if not errorlevel=255 goto end
del %1 /Y
:end
end
-----------
you might want to check my batchscript, im a little rusty :/
Cheers,
McoreD