home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / podstawy / dos / 4dos / 4uzytki / copyall1.exe / COPYALL.BTM (.txt) < prev    next >
4DOS Compressed Batch-To-Memory File  |  1994-08-29  |  526b  |  39 lines

  1. @echo off
  2.  
  3. iff "%1"=="" then 
  4.    echo Usage : COPYALL [d:][path]source [c:][path]destination 
  5.    quit
  6. endiff
  7. iff isdir %1 then 
  8.    >&nul
  9. else 
  10.    echo The source directory "%1" does not exist! 
  11.    quit
  12. endiff
  13. iff isdir %2 then goto COPY
  14. else goto CREATE
  15. endiff
  16.  
  17. :CREATE
  18. echo The destination directory "%2" does not exist!
  19. input Do you wish to create this directory? [ny] %%choice
  20. iff "%choice"=="y" then 
  21.    echo creating %2...
  22.    mkdir %2 
  23.    goto COPY 
  24. else 
  25.    echo COPYALL aborted! 
  26.    quit
  27. endiff
  28.  
  29. :COPY 
  30. input Are you sure you want to copy "%1\*.*" to "%2"? [ny] %%choice2
  31. iff "%choice2"=="y" then 
  32.    echo copying %1\*.* to %2\
  33.    copy /hqs %1 %2 >% null
  34.    quit
  35. else 
  36.    echo COPYALL aborted! 
  37.    quit
  38. endiff
  39.