Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript TextStream Object AtEndOfStream Property

Returns true if the file pointer is at the end of a TextStream file; false if it is not. Read-only.

Syntax: JScript TextStream Object AtEndOfStream Property

object.AtEndOfStream

Arguments: JScript TextStream Object AtEndOfStream Property

object

The name of a TextStream object.

Remarks: JScript TextStream Object AtEndOfStream Property

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:

function GetALine(filespec)

{

var fs, f, s, ForReading;

ForReading = 1, s = "";

fs = new ActiveXObject("Scripting.FileSystemObject");

f = fs.OpenTextFile(filespec, ForReading, false);

while (!f.AtEndOfStream)

s += f.ReadLine( );

f.Close( );

return s;

}

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.