Quackit Logo

FREE Hosting!

With every domain name you register with ZappyHost, you get FREE hosting.

$1.99 Domain Names

With every new non-domain purchase thru ZappyHost, you get a domain name for only $1.99.

ColdFusion Append File

Print Version

In the previous lesson, we wrote a file to the server using the ColdFusion cffile tag. The cffile tag also allows you to append a file on the server.

To append a file, you simply use action="append" (instead of action="write"). The contents you specify in this tag are appended to the end of the existing file. If the file doesn't already exist, it is created.

Example of Appending a File

This example declares a variable, assigns the current date and time to it, then appends the result to a file.

<cfset dateAccessed = "This page was accessed at this time: " & now()>

<cffile action="append"
	file="C:\docs\accessLog.txt"
	output="#dateAccessed#">

Optional Attributes

If required, you can use any of the following attributes:

addNewLine
Specifies whether a carriage return/line feed is added to the end or not. The default is "yes". If you don't want a new line to be added, specify addNewLine="no"
mode
Allows you to set permissions on Unix platforms.
attributes
Allows you to specify whether the file should be read only, hidden, or normal.
charSet
Lets you specify the character set to use. For example, UTF-8, ISO-8859-1, UTF-16 etc

Enjoy this website?

  1. Link to this page (copy/paste into your own website or blog):
  2. Add this page to your favorite social bookmarks sites:
               
  3. Add this page to your Favorites

Oh, and thank you for supporting Quackit!