Version: 3.0
This method is used to create a text file and returns a TextStreamObject that can then be used to write to and read from the file.
<%
dim filesys, demofolder, filetxt
Set filesys = CreateObject("Scripting.FileSystemObject")
Set demofolder = filesys.GetFolder("c:\projects\")
Set filetxt = demofolder.CreateTextFile("somefile.txt", True)
filetxt.WriteLine("Your text goes here.")
filetxt.Close
%>
This example creates a text file called, somefile.txt, with the following path: c:\projects\demofolder\somefile.txt