1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
//---------------------------------------------------------------------
// name: read-float.ck
// desc: basic example of reading floats using FileIO
//---------------------------------------------------------------------
// default file
me.dir() + "read-float.txt" => string filename;
// look at command line
if( me.args() > 0 ) me.arg(0) => filename;
// instantiate
FileIO fio;
// open a file
fio.open( filename, FileIO.READ );
// ensure it's ok
if( !fio.good() )
{
cherr <= "can't open file: " <= filename <= " for reading..."
<= IO.newline();
me.exit();
}
// variable to read into
float val;
// loop until end
while( fio => val )
{
cherr <= val <= IO.newline();
}
|