Fixed
Details
Details
Assignee
Mircea Botez
Mircea BotezReporter
Michael Born @ Ortus
Michael Born @ OrtusLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Fix versions
Affects versions
Priority
Created 6 April 2021 at 14:37
Updated 27 April 2022 at 16:57
Resolved 19 May 2021 at 11:44
FileAppend() does not accept a file object as the first argument.
This is inconsistent with FileWrite(), which accepts a file object as the first argument.
Moreover, this is an incompatibility with Adobe ColdFusion, which accepts a file object as the first argument.
fileObject = fileOpen( "test.txt", "write" ); fileAppend( fileObject, "test content" ); fileClose( fileObject );