ASP AtEndOfStream 属性

asp atendofstream 属性

textstream 对象参考手册 完整的 textstream 对象参考手册

如果文件指针位于 textstream 文件的末尾,atendofstream 属性返回 true,否则返回 false。

注意:该属性仅工作于以只读方式打开的 textstream 对象。

语法

textstreamobject.atendofstream

实例

<%
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)
%>

输出:

the last character in the text file is: !

textstream 对象参考手册 完整的 textstream 对象参考手册
相关文章