home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 12 / XENIATGM12.ISO / shock / copyhd.bat < prev    next >
DOS Batch File  |  1996-01-17  |  412b  |  26 lines

  1. @echo off
  2. if c%1 == c goto _nodir
  3. if c%2 == c goto _nodir
  4. md %1:\%2
  5. echo a > %1:\%2\x
  6. if not exist %1:\%2\x goto _nodir
  7. del %1:\%2\x
  8. xcopy /S/E \%2\*.* %1:\%2
  9. if errorlevel 1 goto _nocopy
  10. echo Installazione completata
  11. if c%3 == c goto _end
  12. %1:
  13. cd \%2
  14. %3
  15. goto _end
  16.  
  17. :_nodir
  18. echo Impossibile creare la directory %1:\%2
  19. goto _end
  20.  
  21. :_nocopy
  22. echo Impossibile copiare i files
  23. goto _end
  24.  
  25. :_end
  26.