home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games Special 3
/
cd.iso
/
dosgames
/
puzzler
/
pzlcopy.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-04
|
2KB
|
59 lines
@echo off
rem ***********************************
rem * PZLCopy.bat *
rem ***********************************
rem *Puzzler installation file copying*
rem *=================================*
rem * Normal useage is to run *
rem * INSTALL.EXE *
rem * *
rem * Install will prompt for paths, *
rem * create directories if needed *
rem * change to the source directory, *
rem * and then call PZLCOPY.BAT with *
rem * the correct parameters. *
rem ***********************************
rem ..........................................................
rem . Do not run PZLCOPY directly, unless you have a specific,
rem . unusual reason. Normally, you should run INSTALL.EXE
rem .
rem . useage: (if not using install.exe)
rem .
rem . current directory must be the source directory
rem .
rem . PZLCOPY DESTINATION_PATH DATA_PATH .
rem ..........................................................
@echo Copying files...
rem Copy the executables
copy Puzzler.ex? %1
copy Install.ex? %1
rem copy this Bat file
copy PzlCopy.ba? %1
rem copy OS/2 files
copy OS2Setup.cm? %1
copy PUZZLER.IC? %1
rem Copy the video and printer drivers and fonts
copy *.bgi %1
copy psbg?.ps %1
copy *.chr %1
rem Copy the help files
copy *.txt %1
copy Register.fr? %1
rem Copy the sample files
rem Give warning for all duplicate files
for %%f in (*.PZL) do if exist %2\%%f echo %2\%%f ALREADY EXISTS -- NOT COPIED
rem Notify of copy
for %%f in (*.PZL) do if not exist %2\%%f echo %%f
rem Copy non duplicates regularly
for %%f in (*.PZL) do if not exist %2\%%f copy %%f %2