Tuesday, December 28, 1999, 11:55:15 AM, Chuck wrote:
JT>>> deltree /y c:\windows\temp > nul
JT>>> md c:\windows\temp

>> Better way is
>> deltree /y c:\windows\temp\*.*>nul
> If  any  of  you are using NT the following batch file will delete all
> temp files and directories in temp:

> @echo off
> pushd %1
> del /q *.*
> for /f "Tokens=*" %%i in ('dir /b') do rd /s /q "%%i"
> popd
> :end

    rm -rf temp/*

    :)

-- 
         Steve C. Lamb         | I'm your priest, I'm your shrink, I'm your
         ICQ: 5107343          | main connection to the switchboard of souls.
-------------------------------+---------------------------------------------

-- 
--------------------------------------------------------------
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   <mailto:[EMAIL PROTECTED]>
To Unsubscribe from TBUDL, double click here and send the message:
   <mailto:[EMAIL PROTECTED]>
--------------------------------------------------------------

Reply via email to