home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / scrmod.zip / COPY_DEL.SCR < prev    next >
Text File  |  1992-01-02  |  475b  |  21 lines

  1. > timeout = 0
  2. > windowprms(on,1,129)
  3. > windowshow()
  4. > SV3 = 'c:\config.sys'
  5. > SV4 = 'c:\syscopy.txt'
  6. > copy (SV3,SV4,REPLACE)
  7. > if exist ('c:\syscopy.txt')
  8. > message ('File copy operation completed')
  9. > else
  10. > message ('Copy unsuccessful')
  11. > endif
  12. > message ('Press any key to delete the copy')
  13. > wait()
  14. > delete ('c:\syscopy.txt')
  15. > if exist ('c:\syscopy.txt')
  16. > message ('File still there!')
  17. > else
  18. > message ('File successfully deleted')
  19. > endif
  20. > end
  21.