summaryrefslogtreecommitdiffstats
path: root/win/rmd.bat
blob: 2669f37609c05e1bedf4fc9fe4f2fc4c6d12e9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
rem RCS: @(#) $Id: rmd.bat,v 1.4 2001/09/08 22:34:42 mdejong 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