Whatever message this page gives is out now! Go check it out!
FileWriteLine(fileobj, text) |
Parameter | Description |
text | Content to add to the file object. |
fileobj | The file object to which to write the line. |
<h3>FileWriteLine Example</h3>
<cfscript>
myfile = FileOpen("c:\temp\test1.txt", "write");
FileWriteLine(myfile,"This line is new.");
FileClose(myfile);
</cfscript>