從TextStream文件中讀取整行字符(直到下壹行,但不包括下壹行)並返回結果字符串。
對象。閱讀線
對象應該是TextStream對象的名稱。
解釋
下面的示例演示如何使用ReadLine方法從TextStream文件中讀取字符並返回壹個字符串:
函數ReadLineTextFile
Const ForReading = 1,ForWriting = 2
Dim fso,MyFile
set FSO = CreateObject(“Scripting。文件系統對象“)
設置MyFile = fso。open textfile(“c:\ testfile . txt“,ForWriting,True)
我的文件。WriteLine“Hello world!”
我的文件。編劇《敏捷的棕色狐貍》
我的文件。關閉
設置MyFile = fso。open textfile(“c:\ testfile . txt“,用於閱讀)
ReadLineTextFile = MyFile。“ReadLine”返回“Hello world!”
結束功能