summaryrefslogtreecommitdiffstats
path: root/win/rmd.bat
blob: 820b76f8f2b730d3f83d9bb38af1602f5ddb7c72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off

if not exist %1\nul goto end

echo Removing directory %1

if "%OS%" == "Windows_NT" goto winnt



deltree /y %1

if errorlevel 1 goto end

goto success



:winnt

rmdir /s /q %1

if errorlevel 1 goto end



:success

echo Deleted directory %1



:end