Microsoft® JScript AtEndOfStream Property |
Language Reference Version 2 |
Read-only property that returns true if the file pointer is at the end of a TextStream file; false if it is not.
object.AtEndOfStreamThe object is always the name of a TextStream object.
The AtEndOfStream property applies only to TextStream files that are open for reading, otherwise, an error occurs.The following code illustrates the use of the AtEndOfStream property:
var fs, a, retstring; fs = new ActiveXObject("Scripting.FileSystemObject"); a = fs.OpenTextFile("c:\testfile.txt", ForReading, False); while (a.AtEndOfStream != true) { retstring = a.ReadLine( ); ... } a.Close( );