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
上一篇: VBS教程:方法-ReadLine 方法
下一篇: VBS教程:对象-Folder 对象