手机
当前位置:查字典教程网 >脚本专栏 >vbs >VBS教程:属性-AtEndOfLine 属性
VBS教程:属性-AtEndOfLine 属性
摘要:AtEndOfLine属性TextStream文件中,如果文件指针指向行末标记,就返回True;否则如果不是只读则返回False。objec...

AtEndOfLine 属性

TextStream 文件中,如果文件指针指向行末标记,就返回

True;否则如果不是只读则返回

False。

object.AtEndOfLine

object 应为 TextStream 对象的名称。

说明

AtEndOfLine 属性仅应用于以读方式打开的

TextStream 文件,否则会出现错误。

下列代码举例说明如何使用

AtEndOfLine 属性:

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

.AtEndOfLine <> True retstring = theFile.Read(1) Loop theFile.Close ReadEntireFile = retstringEnd Function

【VBS教程:属性-AtEndOfLine 属性】相关文章:

VBS教程:属性-DateLastModified 属性

VBS教程:属性-DriveLetter 属性

VBS教程:属性-DateCreated 属性

VBS教程:属性-Line 属性

VBS教程:属性-SubFolders 属性

VBS教程:属性-ParentFolder 属性

VBS教程:属性-Type 属性

VBS教程:属性-Count 属性

VBS教程:属性-TotalSize 属性

VBS教程:属性-ShortPath 属性

精品推荐
分类导航