Open
Description
Hi, I am wondering if there is an example of the following Atari BASIC in FastBASIC?
10 OPEN #1,8,0,"D:MYFILE.DAT":NOTE #1,MSECT,MBYTE
20 FOR Y=1 TO 10:? #1;B$:NEXT Y:CLOSE #1
30 OPEN #1,8,0,"D:MYFILE.CFG"
40 ? #1;MSECT;CR$;MBYTE
"NOTE" is what I am missing - and maybe there is a better way to handle file IO
Basically the thing I want to solve is creating a datafile, and then tracking the BYTE and SECTOR for indexed retrieval.
Use cases:
Mailing list Database
User data (Passwords and email addresses)
Message Database (For a BBS)