FileAppend
Method Signature
FileAppend(file=[any], data=[any], charset=[string], addnewline=[boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Simple Example
// Create mock log entry
logEntry = dateTimeFormat( now(), "yyyy/mm/dd HH:nn" ) & " this is a mock log entry!";
// Append line to file
fileAppend( "/path/to/file.log", logEntry );
Additional Examples
Related
Last updated
Was this helpful?
