From 5e674ce6194b24cecf0ad4ef5aaaf5c790451138 Mon Sep 17 00:00:00 2001 From: escoffon Date: Wed, 30 Sep 1998 20:19:00 +0000 Subject: Added support for Win95. --- win/mkd.bat | 41 +++++++++++++++++++++-------------------- win/rmd.bat | 45 +++++++++++++++++++++++++-------------------- 2 files changed, 46 insertions(+), 40 deletions(-) diff --git a/win/mkd.bat b/win/mkd.bat index 68e88f0..0f2ae76 100644 --- a/win/mkd.bat +++ b/win/mkd.bat @@ -1,20 +1,21 @@ -@echo off -rem RCS: @(#) $Id: mkd.bat,v 1.2 1998/09/14 18:23:58 stanton Exp $ - -if exist %1 goto end - -if %OS% == Windows_NT goto winnt - -echo Add support for Win 95 please -goto end - -goto success - -:winnt -md %1 -if errorlevel 1 goto end - -:success -echo created directory %1 - -:end +@echo off +rem RCS: @(#) $Id: mkd.bat,v 1.3 1998/09/30 20:19:00 escoffon Exp $ + +if exist %1\tag.txt goto end + +if "%OS%" == "Windows_NT" goto winnt + +md %1 +if errorlevel 1 goto end + +goto success + +:winnt +md %1 +if errorlevel 1 goto end + +:success +echo TAG >%1\tag.txt +echo created directory %1 + +:end diff --git a/win/rmd.bat b/win/rmd.bat index 745be47..b3af22c 100644 --- a/win/rmd.bat +++ b/win/rmd.bat @@ -1,20 +1,25 @@ -@echo off -rem RCS: @(#) $Id: rmd.bat,v 1.2 1998/09/14 18:23:59 stanton Exp $ - -if not exist %1 goto end - -if %OS% == Windows_NT goto winnt - -echo Add support for Win 95 please -goto end - -goto success - -:winnt -rmdir %1 /s /q -if errorlevel 1 goto end - -:success -echo deleted directory %1 - -:end +@echo off +rem RCS: @(#) $Id: rmd.bat,v 1.3 1998/09/30 20:19:59 escoffon 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 -- cgit v0.12