LOTUSSCRIPT LANGUAGE


Reading, writing, and closing files
You can use LotusScript to read and write files. To create a file, you open and write to a file that does not yet exist; LotusScript creates it automatically.

LotusScript provides three modes of file access:


This table summarizes the statements and functions that operate on Sequential, Random, and Binary files.
Statements & FunctionsSequentialRandomBinary
DirXXX
EOFXXX
FileCopyXXX
FileDateTimeXXX
FileLenXXX
FreeFileXXX
GetAttrXXX
LocXXX
LOFXXX
SeekXXX
SetAttrXXX
Open

(This is where you set the access mode.)

XXX
CloseXXX
GetXXX
Input( )XX
InputB( )XX
InputBP( )XX
Input #X
Line Input #X
Print #X
PutXX
Write #X

See Also