Interface TextFile
access this type via: io.TextFile (provides, requires or uses)
--- extends:File
Create, read and write text files on a line-by-line basis.
Functions
TextFile(char path[], byte accessType)
char[] readLine()
void writeLine(char line[])
TextFile(char path[], byte accessType)
Open a file in a chosen mode, using one of File.READ or File.WRITE.
char[] readLine()
Read one line of text from the file.
void writeLine(char line[])
Write the given text to the file, followed by a new line character.