WriteLine
WriteLine は文字列をファイルに書き込むために使用され、そのとき提供された文字列の最後に CRLF (キャリッジ リターン ライン フィード) を追加します。
構文
WriteLine(string)
戻り値
ブール値: 書き込みが成功した場合には真 (ゼロ以外)、それ以外の場合は偽 (ゼロ)。
例
このスクリプトは、ローカル 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