Write

Write 用于将字符串写入到文件,不在提供的字符串末尾追加 CRLF(回车换行)。

语法

Write(string, [number_of_bytes])

返回结果

不返回数据。

更多信息

Number_of_bytes 是可选参数,如果省略,将根据传递的字符串的大小自动计算其值。

示例

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