home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CDPD Public Domain Collection for CDTV 3
/
CDPDIII.bin
/
bbs
/
ff810.lha
/
FF810
/
Amiga_E
/
Sources
/
Projects
/
YaxSrc
/
io.yax
< prev
next >
Wrap
Text File
|
1993-01-24
|
413b
|
17 lines
/* _very_ slow "filecopier". just to demo io-functions */
(string s)
(window 0 11 400 100 'filecopy')
(write 'let me copy a file for you to ram:')
(write 'file: ' '')
(read s)
(if (greater (filelen s) 0)
(do
(write 'copying file "' s '" to "ram:x" ...')
(see s) (tell 'ram:x')
(while (uneq (put (get)) -1)) /* put doesn't write -1, only 255 */
(seen) (told)
)
(write 'no such file!')
)