...
string
Scroll pagebreak |
---|
Examples
...
language | text |
---|
string $line;
...
int $fileID;
...
// Open a sample text file
...
$fileID = `fileOpen "c:/samplefile.txt" "r"`;
...
// Keep reading in lines from the file
...
while( `isEndOfFile $fileID` == false )
...
{
...
$line = `readLine $fileID`;
...
// Do something with line
...
print $line;
...
}
Additional information
Related commands
...