forked from QB64-Phoenix-Edition/QB64pe
-
Notifications
You must be signed in to change notification settings - Fork 0
APPEND
Samuel Gomes edited this page Nov 8, 2022
·
1 revision
See OPEN.
APPEND is used in an output type OPEN statement to add data to the end of a file.
OPEN fileName$ FOR APPEND AS #1
- Creates an empty file using the filename if none exists.
- Mode places new data after the previous data in the file.
- Mode can use PRINT (file statement), WRITE (file statement) or PRINT USING (file statement) to output file data or text.