We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbb625d commit e0dc30cCopy full SHA for e0dc30c
data/en/cffile.json
@@ -47,7 +47,7 @@
47
{
48
"title": "Script Syntax - Append",
49
"description": "File Append - There is no fileAppend() so we access the file and use fileWriteLine()",
50
- "code": "myFile = fileOpen(expandPath(\"./myFile.txt\"), \"write\"); \r\n fileWriteLine(myFile, \"Here's some new content.\"); \r\n fileClose(myFile);",
+ "code": "myFile = fileOpen(expandPath(\"./myFile.txt\"), \"append\"); \r\n fileWriteLine(myFile, \"Here's some new content.\"); \r\n fileClose(myFile);",
51
"runnable":false,
52
"result": ""
53
},
0 commit comments