SHORTIES\AA.BAT ·
BAT ·
903 B ·
1988-12-27 ·
from PCPlus_Issue-33_Jun-1989_FluxEngine-360Kb
echo off
cls
if not %1x==x goto help
if "%1"=="?" goto help
echo Copying files from A: ...
xcopy a:*.*/e/s
goto exit
:help
echo
echo
echo
echo AA - Floppy Disc Copier
echo
echo (c) 1988 Colin Walls
echo
echo
echo This command enables you to copy all the files from
echo a floppy (in the A: drive) to the current hard disc
echo directory. Any sub-directory structure on the
echo floppy is also copied; the sub-directories being
echo created as necessary.
echo
echo The XCOPY command is used, as this is more
echo efficient than the standard COPY. Also it can copy
echo all the sub-directory structure. If you are using
echo a version of DOS earlier than V3, you need to
echo change the XCOPY to COPY and remove the /E/S
echo switches.
echo
echo No parameters are required.
echo
:exit