home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3
/
hamradioversion3.0examsandprograms1992.iso
/
kenwood
/
log_eqf
/
copy-eqf.bat
next >
Wrap
DOS Batch File
|
1991-02-06
|
743b
|
30 lines
echo . This batch file copies LOG-EQF files to floppy A: or B:
echo off
if "%1"=="" goto error
cls
goto noerror
:error
echo . ERROR: You MUST enter this batch file by typing the target
echo . disk drive after this file name, i.e.... COPY-EQF B:
echo . will copy from the current directory to drive B.
goto exit
:noerror
echo . Now checking floppy %1 before attempting copy...
chkdsk %1/f
pause
cls
echo . Beginning copy of LOG-EQF files to floppy %1...
copy log-eqf.exe %1
copy log-eqf.mem %1
copy dupe-eqf.exe %1
copy log-eqf.doc %1
copy dxprefix.lib %1
copy sample.log %1
copy copy-eqf.bat %1
copy readme.doc %1
copy log-eqf.def %1
cls
echo . Directory of floppy %1 files...
dir %1
:exit