VBS教程:属性-AtEndOfStream 属性

所属分类: 脚本专栏 / vbs 阅读数: 648
收藏 0 赞 0 分享

AtEndOfStream 属性

如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False

object.AtEndOfStream

object 应为 TextStream 对象的名称。

说明

AtEndOfStream 属性仅应用于以只读方式打开的 TextStream 文件,否则会出现错误。

下列代码举例说明如何使用 AtEndOfStream 属性:

Function ReadEntireFile(filespec)  Const ForReading = 1  Dim fso, theFile, retstring  Set fso = CreateObject("Scripting.FileSystemObject")  Set theFile = fso.OpenTextFile(filespec, ForReading, False)  Do While theFile.AtEndOfStream <> True    retstring = theFile.ReadLine  Loop  theFile.Close  ReadEntireFile = retstringEnd Function
更多精彩内容其他人还在看

VBS教程:函数-Chr 函数

VBS教程:函数-Chr 函数
收藏 0 赞 0 分享

VBS教程:函数-CDbl 函数

VBS教程:函数-CDbl 函数
收藏 0 赞 0 分享

VBS教程:函数-CDate 函数

VBS教程:函数-CDate 函数
收藏 0 赞 0 分享

VBS教程:函数-CCur 函数

VBS教程:函数-CCur 函数
收藏 0 赞 0 分享

VBS教程:函数-CByte 函数

VBS教程:函数-CByte 函数
收藏 0 赞 0 分享

VBS教程:函数-CBool 函数

VBS教程:函数-CBool 函数
收藏 0 赞 0 分享

VBS教程:函数-Atn 函数

VBS教程:函数-Atn 函数
收藏 0 赞 0 分享

VBS教程:函数-Asc 函数

VBS教程:函数-Asc 函数
收藏 0 赞 0 分享

VBS教程:函数-Array 函数

VBS教程:函数-Array 函数
收藏 0 赞 0 分享

VBS教程:函数-Abs 函数

VBS教程:函数-Abs 函数
收藏 0 赞 0 分享
查看更多