home *** CD-ROM | disk | FTP | other *** search
- echo off
- if XX%1==XX goto usage
- if XX%2==XX goto usage
- if XX%3==XX goto usage
-
- %1:
- if ERRORLEVEL 1 goto usage
- if NOT EXIST %2\*.* md %2
- cd %2
- if ERRORLEVEL 1 goto usage
- if NOT EXIST os2\*.* md os2
- if NOT ERRORLEVEL 1 goto d14
- echo Could not create OS2 subdirectory
- goto usage
- :d14
- if NOT EXIST os2lan\*.* md os2lan
- if NOT ERRORLEVEL 1 goto d15
- echo Could not create OS2LAN subdirectory
- goto usage
- :d15
- goto copy
-
- :usage
- echo OS/2 program to install c-tree(R) File Handler source on hard disk.
- echo *****:
- echo usage: CTREE {HARD DRIVE} {c-tree DIRECTORY} {FLOPPY DRIVE}
- echo *****:
- echo where {HARD DRIVE} = C or D or E or ... (destination)
- echo where {c-tree DIRECTORY} = Hard disk directory for c-tree
- echo and where {FLOPPY DRIVE} = A or B or ... (source)
- echo e.g., CTREE C ctree a
- echo CTREE D \ct b
- echo *****
- echo The source is then installed as follows: CTREE switches to HARD DRIVE, and
- echo creates (if necessary) the c-tree directory (beginning at the DRIVE's
- echo current directory). Additionally, sub-directories are created for each of
- echo the system dependent modules (e.g., OS/2 and OS/2 Lan Manager).
- echo Then the code is copied from the floppies mounted on FLOPPY DRIVE to these
- echo c-tree directories.
-
- goto done
-
- :copy
- copy %3:\$$$$3 ct2.cmd
- ct2 %1 %3
- :done
-