精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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 對象參考手冊
相關文章