FileWrite()

edit

If you specify a file path, writes the entire content to the specified file. If you specify a file object, writes text or binary data to the file object.

FileWrite( file=any, data=any, charset=string );

Returns: void

Argument Description
file
any, required
edit

file path or object

Alias: filePath, source

data
any, required
edit

data to write to the file

charset
string, optional
edit

The character encoding in which the file contents is encoded.

Examples

edit
filewrite("filepath","fileContent to be write");

Related System Properties / Environment Variables

  • LUCEE_RESOURCE_CHARSET - Default character set for reading from/writing to various resources (files)
    Type: string, Default: system charset

See also