Seek

Seek 用于(从读取位置)移动到文件中的其他位置。

语法

Seek(Distance, Method)

返回结果

文件中的当前位置。

更多信息

Distance 是移动光标的字节数测量。

Method 可以是以下其中一种:

  • 0 - 从文件的开始按照指定的距离移动光标
  • 1 - 从文件的当前位置按照指定的距离移动光标
  • 2 - 从文件的末尾处按照指定的距离移动光标。
示例

该脚本显示将光标 50 个字符移动到文件后主机文件的内容:

函数 Main

Dim textfile As Object

Set textfile = File.Connect("127.0.0.1")

If textfile.Open("c:\windows\system32\drivers\etc\hosts", GENERIC_READ, Open_Existing) Then

Textfile.Seek 50,0

echo(textfile.read(1024))

textfile.Close

End If

End 函数