You can find the CFFiddle demo of this function and other file functions as part of a project that is shared with you.
Click the button below to launch CFFiddle.
To copy the project in your workspace in CFFiddle, follow the steps below:
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.
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.
FileRead(filepath [, charset]) |
FileClose, FileIsEOF, FileReadBinary, FileReadLine, FileWrite
ColdFusion 8: Added this function.
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. |
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.
<h3>FileRead Example - Reading a file</h3>
|
Sign in to your account