home *** CD-ROM | disk | FTP | other *** search
/ Print Artist Classic 3.0 / pa3classic.iso / pa / copypa.bat < prev    next >
DOS Batch File  |  1995-09-13  |  3KB  |  68 lines

  1. @echo off
  2. echo.
  3. echo Print Artist COPYPA utility - copies Print Artist documents and
  4. echo graphics from older versions of Instant Artist or Print Artist.
  5. echo.
  6. set WHAT=%1
  7. :DOSCREEN
  8. if (%what%^a)==(^a) goto NODICE
  9. if EXIST %what%\*.sgn goto DOIT
  10. if EXIST %what%\*.bc  goto DOIT
  11. if EXIST %what%\*.lth goto DOIT
  12. if EXIST %what%\*.cer goto DOIT
  13. if EXIST %what%\*.gc  goto DOIT
  14. if EXIST %what%\*.ban goto DOIT
  15. if EXIST %what%\*.pc  goto DOIT
  16. if EXIST %what%\*.env goto DOIT
  17. if EXIST %what%\*.cal goto DOIT
  18. if EXIST %what%\*.crf goto DOIT
  19. if EXIST %what%\*.gfx goto DOIT
  20. if EXIST %what%\*.pcx goto DOIT
  21. if EXIST %what%\*.bmp goto DOIT
  22. if EXIST %what%\*.tif goto DOIT
  23. if EXIST %what%\*.jpg goto DOIT
  24. if EXIST %what%\*.pcd goto DOIT
  25. if EXIST %what%\*.eps goto DOIT
  26. :NODICE
  27. echo The COPYPA utility did not find any Print Artist documents or graphics
  28. echo in %what%.
  29. echo.
  30. echo Enter the path of your older version of Instant Artist or Print Artist.
  31. echo Usually, this is C:\PA, D:\PA or C:\WINIART.
  32. echo.
  33. what S "Path containing old documents and graphics: "
  34. echo.
  35. if (%what%^a)==(^a) goto DONE
  36. goto DOSCREEN
  37. :DOIT
  38. echo Copying old documents and graphics from %what% to Print Artist 3.0...
  39. if EXIST %what%\*.fnt .\pixcopy /E %what%\*.fnt ..\PA
  40. if EXIST %what%\*.lay .\pixcopy /E %what%\*.lay ..\PA
  41. if EXIST %what%\*.gfx .\pixcopy /E %what%\*.gfx ..\PA
  42. if EXIST %what%\*.lys .\pixcopy /E %what%\*.lys ..\PA
  43. if EXIST %what%\*.sgn .\pixcopy /E %what%\*.sgn ..\PA
  44. if EXIST %what%\*.bc  .\pixcopy /E %what%\*.bc  ..\PA
  45. if EXIST %what%\*.lth .\pixcopy /E %what%\*.lth ..\PA
  46. if EXIST %what%\*.cer .\pixcopy /E %what%\*.cer ..\PA
  47. if EXIST %what%\*.gc  .\pixcopy /E %what%\*.gc  ..\PA
  48. if EXIST %what%\*.ban .\pixcopy /E %what%\*.ban ..\PA
  49. if EXIST %what%\*.pc  .\pixcopy /E %what%\*.pc  ..\PA
  50. if EXIST %what%\*.env .\pixcopy /E %what%\*.env ..\PA
  51. if EXIST %what%\*.cal .\pixcopy /E %what%\*.cal ..\PA
  52. if EXIST %what%\*.crf .\pixcopy /E %what%\*.crf ..\PA
  53. if EXIST %what%\*.pcx .\pixcopy /E %what%\*.pcx ..\PA
  54. if EXIST %what%\*.bmp .\pixcopy /E %what%\*.bmp ..\PA
  55. if EXIST %what%\*.tif .\pixcopy /E %what%\*.tif ..\PA
  56. if EXIST %what%\*.jpg .\pixcopy /E %what%\*.jpg ..\PA
  57. if EXIST %what%\*.pcd .\pixcopy /E %what%\*.pcd ..\PA
  58. if EXIST %what%\*.eps .\pixcopy /E %what%\*.eps ..\PA
  59. echo.
  60. echo Finished copying old documents and graphics.  After running
  61. echo Print Artist 3.0 and double-checking that everything is moved
  62. echo over, you can delete your older version of Instant Artist or
  63. echo Print Artist.
  64. echo.
  65. :DONE
  66. echo [[[ Close this window when you have finished reading the text. ]]]
  67. echo.
  68.