home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo.
- echo Print Artist COPYPA utility - copies Print Artist documents and
- echo graphics from older versions of Instant Artist or Print Artist.
- echo.
- set WHAT=%1
- :DOSCREEN
- if (%what%^a)==(^a) goto NODICE
- if EXIST %what%\*.sgn goto DOIT
- if EXIST %what%\*.bc goto DOIT
- if EXIST %what%\*.lth goto DOIT
- if EXIST %what%\*.cer goto DOIT
- if EXIST %what%\*.gc goto DOIT
- if EXIST %what%\*.ban goto DOIT
- if EXIST %what%\*.pc goto DOIT
- if EXIST %what%\*.env goto DOIT
- if EXIST %what%\*.cal goto DOIT
- if EXIST %what%\*.crf goto DOIT
- if EXIST %what%\*.gfx goto DOIT
- if EXIST %what%\*.pcx goto DOIT
- if EXIST %what%\*.bmp goto DOIT
- if EXIST %what%\*.tif goto DOIT
- if EXIST %what%\*.jpg goto DOIT
- if EXIST %what%\*.pcd goto DOIT
- if EXIST %what%\*.eps goto DOIT
- :NODICE
- echo The COPYPA utility did not find any Print Artist documents or graphics
- echo in %what%.
- echo.
- echo Enter the path of your older version of Instant Artist or Print Artist.
- echo Usually, this is C:\PA, D:\PA or C:\WINIART.
- echo.
- what S "Path containing old documents and graphics: "
- echo.
- if (%what%^a)==(^a) goto DONE
- goto DOSCREEN
- :DOIT
- echo Copying old documents and graphics from %what% to Print Artist 3.0...
- if EXIST %what%\*.fnt .\pixcopy /E %what%\*.fnt ..\PA
- if EXIST %what%\*.lay .\pixcopy /E %what%\*.lay ..\PA
- if EXIST %what%\*.gfx .\pixcopy /E %what%\*.gfx ..\PA
- if EXIST %what%\*.lys .\pixcopy /E %what%\*.lys ..\PA
- if EXIST %what%\*.sgn .\pixcopy /E %what%\*.sgn ..\PA
- if EXIST %what%\*.bc .\pixcopy /E %what%\*.bc ..\PA
- if EXIST %what%\*.lth .\pixcopy /E %what%\*.lth ..\PA
- if EXIST %what%\*.cer .\pixcopy /E %what%\*.cer ..\PA
- if EXIST %what%\*.gc .\pixcopy /E %what%\*.gc ..\PA
- if EXIST %what%\*.ban .\pixcopy /E %what%\*.ban ..\PA
- if EXIST %what%\*.pc .\pixcopy /E %what%\*.pc ..\PA
- if EXIST %what%\*.env .\pixcopy /E %what%\*.env ..\PA
- if EXIST %what%\*.cal .\pixcopy /E %what%\*.cal ..\PA
- if EXIST %what%\*.crf .\pixcopy /E %what%\*.crf ..\PA
- if EXIST %what%\*.pcx .\pixcopy /E %what%\*.pcx ..\PA
- if EXIST %what%\*.bmp .\pixcopy /E %what%\*.bmp ..\PA
- if EXIST %what%\*.tif .\pixcopy /E %what%\*.tif ..\PA
- if EXIST %what%\*.jpg .\pixcopy /E %what%\*.jpg ..\PA
- if EXIST %what%\*.pcd .\pixcopy /E %what%\*.pcd ..\PA
- if EXIST %what%\*.eps .\pixcopy /E %what%\*.eps ..\PA
- echo.
- echo Finished copying old documents and graphics. After running
- echo Print Artist 3.0 and double-checking that everything is moved
- echo over, you can delete your older version of Instant Artist or
- echo Print Artist.
- echo.
- :DONE
- echo [[[ Close this window when you have finished reading the text. ]]]
- echo.
-