Close

Close は、開いたファイルのインスタンスを閉じるために使用します。

構文

Close

戻り値

戻されるデータはありません。

このスクリプトは、ローカル C ドライブ上のファイル (test.txt) を開き、そのファイルに 2 行を書き込みます。

Function 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 If

End Function