|
AT2k Design BBS Message Area
Casually read the BBS message area using an easy to use interface. Messages are categorized exactly like they are on the BBS. You may post new messages or reply to existing messages! You are not logged in. Login here for full access privileges. |
| Previous Message | Next Message | Back to BAT Magic <-- <--- | Return to Home Page |
|
||||||
| From | To | Subject | Date/Time | |||
|
|
Visitor | ALL | ADDPATH.BAT |
October 18, 1995 3:06 PM * |
||
My Bat Magic contribution for today:
@echo off
:: This is ADDPATH.BAT. Author unknown
if %1. == . goto SYNTAX
FOR %%a IN (new,NEW,front,FRONT,old,OLD,save,SAVE) DO if %%a == %1 goto %%a
if exist %1\*.* goto INP_PATH_OK
if not exist %1*.* goto PATH_INVAL
:INP_PATH_OK
set OLD_PATH=%PATH%
path=%PATH%;%1
echo.
echo Drive/Directory %1 has beed added to the PATH
echo.
echo New PATH is %PATH%
echo.
goto END
:NEW
if %2. == . goto SYNTAX
set OLD_PATH=%PATH%
path=%2
goto END
:FRONT
if %2. == . goto SYNTAX
if exist %2\*.* goto NEW_FRONT
if not exist %2*.* goto PATH_INVAL
:NEW_FRONT
set OLD_PATH=%PATH%
path=%2;%PATH%
echo.
echo Drive/Directory %2 has been added to the FRONT of the PATH
echo.
echo New PATH is %PATH%
echo.
goto END
:OLD
if not %OLD_PATH%. == . goto RESTORE_OLD
echo.
echo No previous path
echo.
goto END
:RESTORE_OLD
set TEMP_PATH=%PATH%
path=%OLD_PATH%
set OLD_PATH=%TEMP_PATH%
set TEMP_PATH=
echo.
echo PATH restored to %PATH%
echo.
GOTO END
:SAVE
set OLD_PATH=%PATH%
echo.
echo Current Path, %PATH% ,saved
echo.
goto END
|
||||||
|
||||||
| Previous Message | Next Message | Back to BAT Magic <-- <--- | Return to Home Page |
|
Execution Time: 0.014 seconds If you experience any problems with this website or need help, contact the webmaster. VADV-PHP Copyright © 2002-2025 Steve Winn, Aspect Technologies. All Rights Reserved. Virtual Advanced Copyright © 1995-1997 Roland De Graaf. |
