VBS教程:属性-AtEndOfStream 属性
程序员文章站
2022-07-04 20:39:18
atendofstream 属性如果文件指针位于 textstream 文件末,则返回 true;否则如果不为只...
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
上一篇: VBScript的入门学习资料