Description
Reads an on-disk or in-memory text file or a file object created with the FileOpen function. You use this function either as an alternative to the cffile tag with the action="read" attribute. You can also use this function to improve performance when reading a large file, because FileRead does not read the entire file into memory.
Returns
If you specify a filepath, the full text content of the file.
If you specify a file object, the character or byte buffer of the specified size. If the file was opened in read mode, FileRead returns the character data (a string), otherwise it returns binary data.
Category
Function syntax
FileRead(filepath [, charset]) |
See also
FileClose, FileIsEOF, FileReadBinary, FileReadLine, FileWrite
History
ColdFusion 8: Added this function.
Parameters
Parameter |
Description |
---|---|
filepath |
An absolute path to an on-disk or in-memory text file on the server. |
charset |
The character encoding in which the file contents is encoded. The following list includes commonly used values:
|
fileobj |
The file object from which to read. |
buffersize |
The number of characters to read. |
Usage
You can read a text file or a file object with the FileRead function. When you specify an absolute path of a text file, ColdFusion reads the entire contents of the file. When you specify a file object, which you created using the FileOpen function, ColdFusion reads the number of characters specified in buffersize.
Example
<h3>FileRead Example - Reading a file</h3>
|