Friday, November 19, 2010

VBScript Code - Write a line into a file

Write the below code in a notepad and save it as a .vbs file. Either run it from command prompt or run it by double-clicking on it.

VBScript Code - Write a line into a file.

Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set FSO = CreateObject("Scripting.FilesystemObject")
Set filetxt = FSO.OpenTextFile("c:\myfile.txt", ForWriting)
filetxt.WriteLine("My first line of text, which I wrote")
filetxt.Close