Read 方法

TextStream 文件中读入指定数目的字符并返回结果字符串。

object.Read(characters)

参数

object

必选项。应为 TextStream 对象的名称。

characters

必选项。要从文件读的字符数目。

说明

下面例子举例说明如何使用 Read 方法从文件中读取五个字符并返回字符串结果:

Function ReadTextFileTest
  Const ForReading = 1, ForWriting = 2, ForAppending = 8
  Dim fso, f, Msg
  Set fso = CreateObject("Scripting.FileSystemObject")   
  Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True)
  f.Write "世界你好!"
  Set f = fso.OpenTextFile("c:\testfile.txt", ForReading)
  ReadTextFileTest =  f.Read(5)
End Function

请参阅

Close 方法 | ReadAll 方法 | ReadLine 方法 | Skip 方法 | SkipLine 方法 | Write 方法 | WriteLine 方法 | WriteBlankLines 方法

应用于: TextStream 对象

www.holmesian.org
虎的笑话 虎的成语 虎的歇后语