home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 1.ddi / CTREE.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-04-18  |  2.5 KB  |  97 lines

  1. echo off
  2. if XX%1==XX goto usage
  3. if XX%2==XX goto usage
  4. if XX%3==XX goto usage
  5.  
  6. %1:
  7. if ERRORLEVEL 1 goto usage
  8. if NOT EXIST %2\*.* md %2
  9. cd %2
  10. if ERRORLEVEL 1 goto usage
  11. if NOT EXIST msc\*.* md msc
  12. if NOT ERRORLEVEL 1 goto d2
  13. echo Could not create MSC subdirectory
  14. goto usage
  15. :d2
  16. if NOT EXIST lc\*.* md lc
  17. if NOT ERRORLEVEL 1 goto d3
  18. echo Could not create LC subdirectory
  19. goto usage
  20. :d3
  21. if NOT EXIST tc\*.* md tc
  22. if NOT ERRORLEVEL 1 goto d4
  23. echo Could not create TC subdirectory
  24. goto usage
  25. :d4
  26. if NOT EXIST netbios\*.* md netbios
  27. if NOT ERRORLEVEL 1 goto d5
  28. echo Could not create NETBIOS subdirectory
  29. goto usage
  30. :d5
  31. if NOT EXIST novell\*.* md novell
  32. if NOT ERRORLEVEL 1 goto d6
  33. echo Could not create NOVELL subdirectory
  34. goto usage
  35. :d6
  36. if NOT EXIST unix\*.* md unix
  37. if NOT ERRORLEVEL 1 goto d7
  38. echo Could not create UNIX subdirectory
  39. goto usage
  40. :d7
  41. if NOT EXIST xenix\*.* md xenix
  42. if NOT ERRORLEVEL 1 goto d8
  43. echo Could not create XENIX subdirectory
  44. goto usage
  45. :d8
  46. if NOT EXIST vax\*.* md vax
  47. if NOT ERRORLEVEL 1 goto d9
  48. echo Could not create VAX subdirectory
  49. goto usage
  50. :d9
  51. if NOT EXIST az\*.* md az
  52. if NOT ERRORLEVEL 1 goto d10
  53. echo Could not create AZ subdirectory
  54. goto usage
  55. :d10
  56. if NOT EXIST watcom\*.* md watcom
  57. if NOT ERRORLEVEL 1 goto d13
  58. echo Could not create WATCOM subdirectory
  59. goto usage
  60. :d13
  61. if NOT EXIST os2\*.* md os2
  62. if NOT ERRORLEVEL 1 goto d14
  63. echo Could not create OS2 subdirectory
  64. goto usage
  65. :d14
  66. if NOT EXIST os2lan\*.* md os2lan
  67. if NOT ERRORLEVEL 1 goto d15
  68. echo Could not create OS2LAN subdirectory
  69. goto usage
  70. :d15
  71. goto copy
  72.  
  73. :usage
  74. echo DOS program to install c-tree(R) File Handler source on hard disk.
  75. echo *****:
  76. echo usage: CTREE {HARD DRIVE} {c-tree DIRECTORY} {FLOPPY DRIVE}
  77. echo *****:
  78. echo        where {HARD DRIVE}       = C or D or E or ... (destination)
  79. echo        where {c-tree DIRECTORY} = Hard disk directory for c-tree
  80. echo        and where {FLOPPY DRIVE} = A or B or ... (source)
  81. echo        e.g.,    CTREE  C  ctree  a
  82. echo            CTREE  D  \ct    b
  83. echo *****
  84. echo The source is then installed as follows: CTREE switches to HARD DRIVE, and
  85. echo creates (if necessary) the c-tree directory (beginning at the DRIVE's
  86. echo current directory). Additionally, sub-directories are created for each of
  87. echo the system dependent modules (e.g., NOVELL server, NETBIOS server, UNIX,
  88. echo etc.). Then the code is copied from the floppies mounted on FLOPPY DRIVE
  89. echo to these c-tree directories.
  90.  
  91. goto done
  92.  
  93. :copy
  94. copy %3:\$$$$2 ct2.bat
  95. ct2 %1 %3
  96. :done
  97.