欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VBS教程:属性-AtEndOfLine 属性

程序员文章站 2022-04-10 08:28:33
atendofline 属性textstream 文件中,如果文件指针指向行末标记,就返回 true;否则如果不...

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