summaryrefslogtreecommitdiff
path: root/jni/ruby/win32/rm.bat
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/win32/rm.bat
Fresh start
Diffstat (limited to 'jni/ruby/win32/rm.bat')
-rwxr-xr-xjni/ruby/win32/rm.bat18
1 files changed, 18 insertions, 0 deletions
diff --git a/jni/ruby/win32/rm.bat b/jni/ruby/win32/rm.bat
new file mode 100755
index 0000000..9496441
--- /dev/null
+++ b/jni/ruby/win32/rm.bat
@@ -0,0 +1,18 @@
+@echo off
+:optloop
+if "%1" == "-f" shift
+if "%1" == "-r" (shift & set recursive=1 & goto :optloop)
+if "%recursive%" == "1" goto :recursive
+:begin
+if "%1" == "" goto :end
+set p=%1
+if exist "%p:/=\%" for %%I in ("%p:/=\%") do @del "%%I"
+shift
+goto :begin
+:recursive
+if "%1" == "" goto :end
+set p=%1
+if exist "%p:/=\%" rd /s /q "%p:/=\%"
+shift
+goto :recursive
+:end