Gli ultimi tutorial di sviluppo web
 

ASP AtEndOfStream Property


<Complete TextStream Object Reference

La proprietà AtEndOfStream restituisce True se il puntatore del file si trova alla fine di un file TextStream, e False in caso contrario.

Note: Questa proprietà funziona solo su un oggetto TextStream che sono aperti per la lettura.

Sintassi

TextStreamObject.AtEndOfStream

Esempio

<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt")
f.write("Hello World!")
f.close

set t=fs.OpenTextFile("c:\test.txt",1,false)
do while t.AtEndOfStream<>true
  x=t.Read(1)
loop
t.close
Response.Write("The last character is: " & x)
%>

Output:

The last character in the text file is: !

<Complete TextStream Object Reference