View Single Post
  #9  
Old 24th Jun 04, 05:38 AM
~*McoreD*~'s Avatar
~*McoreD*~ ~*McoreD*~ is offline
Super Moderator
 
Join Date: Jul 2002
Location: Australia
Posts: 2,902
~*McoreD*~ is an unknown quantity at this point
Does this bat file make any sense to you guys?

I got it as a reply from ieX.

Quote:
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
Reply With Quote