1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 17:15:13 +00:00
qb64/internal/help/FREEFILE.txt
2013-01-24 23:57:23 +11:00

18 lines
550 B
Plaintext

The '''FREEFILE''' function returns an unused file access number.
{{PageSyntax}}
:: file1% = FREEFILE
* FREEFILE values should be given to unique variables so that each file has a specific variable value assigned to it.
* The file number variable can later be used to read, write or [[CLOSE]] that file.
* [[OPEN]] each file number after each FREEFILE return or the values returned may be the same!
* [[OPEN COM]] statements cannot use any number assigned to files already OPEN!
''See also:''
* [[GET]], [[PUT]], [[CLOSE]]
{{PageNavigation}}