home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
pcresorc
/
pcr815.arc
/
VCOPY1.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-07-15
|
380b
|
17 lines
echo off
if ""=="%1" goto help
if ""=="%2" goto help
if not exist %1 goto nosource
copy %1 %2
fc %1 %2
goto end
:help
echo VCOPY copies files and verifies the source file with the copy.
echo To use VCOPY you must supply a source and destination like you
echo would with the DOS copy command.
goto end
:nosource
echo Source file not found. No files copied.
:end