Close

Close 用于关闭打开的文件的一个实例。

语法

Close

返回结果

不返回数据。

示例

该脚本将打开本地 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 函数