E r g e b n i s / R e s u l t
Append the entire contents of one file to another
B e s c h r e i b u n g / D e s c r i p t i o n
This function appends the contents of fname2 to file fname1
S y n t a x
Code:
ok = call("apendall",fname1,fname2) P a r a m e t e r
fname1 - The file where to append contents of file fname2
fname2 - The contents of this file are appended to file fname1
R e t u r n s
A boolean value.
B e i s p i e l / E x a m p l e
Code:
attach "filecomp.oac"
fname1 = 'oa3code:test1.txt'
fname2 = 'test2.txt'
ok = call("apendall",fname1,fname2)
detach "filecomp.oac"