URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [insight/] [tcl/] [win/] [rmd.bat] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
@echo off
rem RCS: @(#) $Id: rmd.bat,v 1.1.1.1 2002-01-16 10:25:38 markom Exp $
if not exist %1\tag.txt goto end
echo Removing directory %1
if "%OS%" == "Windows_NT" goto winnt
cd %1
if errorlevel 1 goto end
del *.*
cd ..
rmdir %1
if errorlevel 1 goto end
goto success
:winnt
rmdir %1 /s /q
if errorlevel 1 goto end
:success
echo deleted directory %1
:end
Go to most recent revision | Compare with Previous | Blame | View Log