Part of the Samples Website. 8/16/97.

samples.basicStuff.readLiner

«Reads a text file one line at a time
local (f = file.getSystemDisk () + "textfile")
file.open (f)
while not file.endOfFile (f)
local (linetext = file.readLine (f))
msg (linetext)
file.close (f)


This page was last built on Sat, Aug 16, 1997 at 6:39:15 PM. You can download the current set of sample scripts from our FTP site. Dave