Connect

Connect 用于连接想要打开文件的计算机(本地或远程)。

语法

Connect (IP 或 NetBIOS 名称)

返回结果

文件对象。

示例

该脚本将打开本地 C 盘上的文件(test.txt),然后向其中写入两行:

函数 Main

Dim textfile As Object

Set textfile = File.Connect("127.0.0.1")

If textfile.Open("c:\test.txt", GENERIC_WRITE, CREATE_ALWAYS) Then

textfile.WriteLine("Hi, This is a test file")

textfile.WriteLine("It was created using GFI LanGuard scripting")

textfile.Close

结束条件

End 函数