PDA

View Full Version : auto del .u files



bez
11-19-2007, 02:03 PM
Yo

Sofar all works fine when compiling and test my stuff in the game but
Im having a problem being able to auto del the .u files using a .bat file
this is a bit of a pain having to keep manually deleting it
it seem the spaces in the path below cause a problem.
THE SYSTEM CANNOT FIND THE PATH SPECIFIED

UCC MAKE.bat
__________________________________________________ ______________
@echo off

del C:\Documents and Settings\bez\My Documents\My Games\Unreal Tournament 3\UTGame\Unpublished\CookedPC\Script\*.u

UT3.exe make
__________________________________________________ ____________


is there anyway around this ?

Thx in advance....

bez
11-19-2007, 02:45 PM
is ok now problem fixed just needed " " marks like so

UCC MAKE.bat
__________________________________________________ ______________
@echo off

del "C:\Documents and Settings\bez\My Documents\My Games\Unreal Tournament 3\UTGame\Unpublished\CookedPC\Script\*.u"

UT3.exe make
__________________________________________________ ____________

kisk
11-19-2007, 06:44 PM
you don't need to delete anything.

if your source scripts have changed, they are recompiled.

bez
11-19-2007, 07:21 PM
yeah ya right
thx