| Contents > CFML Reference > ColdFusion Tags > cffile action = "append" |
|
|
|
|
||
Appends text to a text file on the server.
<cffile
action = "append"
file = "full_path_name"
output = "string"
addNewLine = "Yes" or "No"
attributes = "file_attributes_list"
mode = "mode"
charset = "charset_option" >
See the History section of the main cffile tag page.
Attribute |
Req/Opt |
Default |
Description |
|---|---|---|---|
action |
Required |
|
Type of file manipulation that the tag performs. |
file |
Required |
|
Pathname of the file to which to append content of If not an absolute path (starting a with a drive letter and a colon, or a forward or backward slash), it is relative to the ColdFusion temporary directory, which is returned by the |
mode |
Optional |
|
Applies only to UNIX and Linux. Permissions. Octal values of Unix chmod command. Assigned to owner, group, and other, respectively. For example:
|
output |
Required |
|
String to append to the file. |
addNewLine |
Optional |
Yes |
|
attributes |
Optional |
|
Applies to Windows. A comma-delimited list of attributes to set on the file. If omitted, the file's attributes are maintained. Each value must be specified explicitly. For example, if you specify
|
charset |
Optional |
JVM default file character set. |
The character encoding in which the file contents is encoded. The following list includes commonly used values:
For more information character encodings, see: |
This example appends a text string to the file fieldwork.txt:
<cffile action = "append"
file = "c:\files\updates\fieldwork.txt"
output = "<b>But Davis Square is the place to be.</b>">
|
|
||
| Contents > CFML Reference > ColdFusion Tags > cffile action = "append" |
|
|
ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting
Version 6.1
Comments are no longer accepted for ColdFusion MX 6.1. ColdFusion 8 is the current version.
RSS feed | Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p28.htm
Comments
lbryngel said on Feb 18, 2004 at 8:11 AM : IJoeR31673 said on Jun 30, 2004 at 8:13 AM : ocortess said on Jul 20, 2004 at 12:09 PM : Ciphertje said on Jun 1, 2005 at 6:26 AM :