WriteLine
WriteLine 用於將字串寫入到檔案並在提供的字串末尾追加 CRLF(回車換行)。
語法
WriteLine(字串)
結果
布林: 如果寫入成功,則傳回 True(非零),否則傳回 False(零)。
範例
該指令碼將開啟本機 C 磁碟機上的檔案(test.txt),然後向其中寫入兩行:
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("您好,這是測試檔案")
textfile.WriteLine("這是使用 GFI LanGuard 指令碼建立的")
textfile.Close
End If
End Function