1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 14:41:21 +00:00
QB64-PE/internal/help/APPEND.txt

20 lines
577 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]]
{{PageNavigation}}