1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 12:20:22 +00:00
qb64/internal/help/APPEND.txt

21 lines
578 B
Plaintext
Raw Normal View History

2017-10-10 14:55:21 +00:00
#REDIRECT [[OPEN#File_Access_Modes]]
[[APPEND]] is used in an output type [[OPEN]] statement to add data to the end of a file.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: [[OPEN]] {{Parameter|fileName$}} '''FOR APPEND''' AS #1
2017-10-10 14:55:21 +00:00
{{PageDescription}}
* 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.
2017-10-10 14:55:21 +00:00
{{PageSeeAlso}}
[[OUTPUT]], [[RANDOM]], [[INPUT (file mode)]], [[BINARY]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}