home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 3 Comm
/
03-Comm.zip
/
scrmod.zip
/
COPY_DEL.SCR
< prev
next >
Wrap
Text File
|
1992-01-02
|
475b
|
21 lines
> timeout = 0
> windowprms(on,1,129)
> windowshow()
> SV3 = 'c:\config.sys'
> SV4 = 'c:\syscopy.txt'
> copy (SV3,SV4,REPLACE)
> if exist ('c:\syscopy.txt')
> message ('File copy operation completed')
> else
> message ('Copy unsuccessful')
> endif
> message ('Press any key to delete the copy')
> wait()
> delete ('c:\syscopy.txt')
> if exist ('c:\syscopy.txt')
> message ('File still there!')
> else
> message ('File successfully deleted')
> endif
> end